Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/logging/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 人脸检测只工作1秒_Python_Face Detection - Fatal编程技术网

Python 人脸检测只工作1秒

Python 人脸检测只工作1秒,python,face-detection,Python,Face Detection,我不知道为什么,但我的python人脸检测程序在Windows10中只运行了一秒钟。然后呢 关闭 import cv2 face_cascade = cv2.CascadeClassifier('haarcaccade_frontalface_default.xml') cap = cv2.VideoCapture(0) while True: _, img = cap.read() gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) fa

我不知道为什么,但我的python人脸检测程序在Windows10中只运行了一秒钟。然后呢 关闭

import cv2

face_cascade = cv2.CascadeClassifier('haarcaccade_frontalface_default.xml')

cap = cv2.VideoCapture(0)

while True:
    _, img = cap.read()

gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

faces = face_cascade.detectMultiScale(gray, 1.1, 4)

for (x, y, w, h) in faces:
    cv2.rectangle(img, (x, y), (x+w, y+h), (255, 0, 0), 2)

cv2.imshow('img', img)

k = cv2.waitKey(30) & 0xff
if k==27:
    break

cap.release()