OpenCV错误:在简单的面部检测初学者代码中断言失败

问题描述 投票:0回答:1

我开始学习如何使用OpenCV和面部检测。我从下面的代码示例:https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_objdetect/py_face_detection/py_face_detection.html#face-detection

import cv2
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml')

img = cv2.imread('face.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

faces = face_cascade.detectMultiScale(gray, 1.3, 5)
for (x,y,w,h) in faces:
    img = 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)
cv2.waitKey(0)
cv2.destroyAllWindows()

我一直得到这个:

Traceback (most recent call last):
  File "D:/Korisnici/Josipa/Desktop/CV/face_detection.py", line 10, in <module>
    faces = face_cascade.detectMultiScale(gray, 1.3, 5)
error: OpenCV(4.1.1) C:\projects\opencv-python\opencv\modules\objdetect\src\cascadedetect.cpp:1689: error: (-215:Assertion failed) !empty() in function 'cv::CascadeClassifier::detectMultiScale' 

而且我不知道我在做什么错。

python opencv face-detection
1个回答
0
投票

您忘记将haarcascade_frontalface_default.xmlhaarcascade_eye.xml文件复制到您的工作目录中。

我认为您必须先下载OpenCV https://github.com/opencv/opencv,这些XML文件存储在opencv/data/haarcascades/文件夹中。

为我工作:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.