gpt4 book ai didi

python - 简单的dlib程序使我的计算机崩溃

转载 作者:行者123 更新时间:2023-12-02 17:40:06 25 4
gpt4 key购买 nike

我正在pycharm 64bit上运行python 3.6 64 bit的简单程序。

但是,在我运行它的三分之二中,我的计算机突然死机了,无法执行其他任何操作,因此必须按电源按钮将其关闭。

我怀疑它确实使用了过多的RAM,但是我不确定它来自哪里。

这是代码:

from imutils import face_utils
import numpy as np
import argparse
import imutils
import dlib
import cv2

detector = dlib.get_frontal_face_detector()
predictor = dlib.shape_predictor("shape_predictor_68_face_landmarks.dat")

image = cv2.imread("obama.jpg")
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

rects = detector(gray, 1)


for (i, rect) in enumerate(rects):

shape = predictor(gray, rect)
shape = face_utils.shape_to_np(shape)
(x, y, w, h) = face_utils.rect_to_bb(rect)
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 255, 0), 2)
cv2.putText(image, "Face #{}".format(i + 1), (x - 10, y - 10),cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 2)
for (x, y) in shape:
cv2.circle(image, (x, y), 1, (0, 0, 255), -1)

cv2.imshow("Output", image)
cv2.waitKey(0)

最佳答案

好吧,感谢cdarke,我发现将电池使用量转为“高性能”可以解决问题。

关于python - 简单的dlib程序使我的计算机崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46140702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com