我正在通过cv2中的Haar级联代码使用样本面部和眼睛检测。 现在,我正在尝试修改代码,以便在未检测到脸部时触发一些代码。
while 1:
ret, img = cap.read()
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = face_cascade.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)
roi_gray = gray[y:y + h, x:x + w]
roi_color = img[y:y + h, x:x + w]
eyes = eye_cascade.detectMultiScale(roi_gray)
for (ex, ey, ew, eh) in eyes:
cv2.rectangle(roi_color, (ex, ey), (ex + ew, ey + eh), (0, 255, 0), 2)
cv2.imshow('img', img)
k = cv2.waitKey(30) & 0xff
if k == 27:
break
因此,如果检测到级联,则什么也不做,否则:在此处添加一些代码。 有人可以帮忙吗?
答案 0 :(得分:1)
我对the documentation的理解是,您的变量faces
应该包含检测到的包含矩阵的对象的列表,然后您尝试在for循环中使用矩形进行绘制,因此我会这样做像这样:
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
if not faces:
# do your code
else:
for (x, y, w, h) in faces:
# Rest of the code