我在pycharm 64bit上运行python 3.6 64位的简单程序。
然而,我运行它的时候大约有三分之二,我的计算机突然冻结,我无法做任何其他事情,我必须按电源按钮将其关闭。
我怀疑它确实使用了太多内存,但我不确定它来自哪里。
以下是代码:
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)
答案 0 :(得分:1)
非常感谢cdarke我发现将我的电池使用情况转为“高性能”解决了这个问题。