我是python中的新手。我正在使用python 3.5和openCV3。我有以下代码,假设通过网络摄像头捕获大约20帧:
import cv2
import time
cam = cv2.VideoCapture(0)
print(cam.isOpened())
detector=cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
Id=1
sampleNum=0
time.sleep(5)
while(True):
ret, img = cam.read()
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = detector.detectMultiScale(gray, 1.3, 5)
for (x,y,w,h) in faces:
cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2)
#incrementing sample number
sampleNum=sampleNum+1
#saving the captured face in the dataset folder
cv2.imwrite("dataSet/User."+Id +'.'+ str(sampleNum) + ".jpg", gray[y:y+h,x:x+w])
cv2.imshow('frame',img)
#wait for 100 miliseconds
if cv2.waitKey(100) & 0xFF == ord('q'):
break
# break if the sample number is morethan 20
elif sampleNum>20:
break
cam.release()
cv2.destroyAllWindows()
但是我收到了这个错误:
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
错误:...... \ modules \ imgproc \ src \ color.cpp:7456:错误:(-215)scn == 3 || scn == 4 in function cv :: ipp_cvtColor
我怎么能克服这样的错误?
答案 0 :(得分:0)
此代码在我的机器上工作并跟踪我的脸。请尝试以下方法:
gray
图片是否与您期望的cv2.imgshow('gray', gray)
相符(并插入一个睡眠,以便您可以看到它)。 cam.isOpened()应返回True print(gray.dtype)