解决error: (-215:Assertion failed) !empty() in function ‘cv::CascadeClassifier::detectMultiScale‘

运行代码时出错:error: (-215:Assertion failed) !empty() in function ‘cv::CascadeClassifier::detectMultiScale’

File “D:/python_project/Recognition/recognition1.py”, line 93, in
predict_expression()
File “D:/python_project/Recognition/recognition1.py”, line 67, in predict_expression
faces = cascade.detectMultiScale(frame_gray, scaleFactor=1.1, minNeighbors=1, minSize=(120, 120))
cv2.error: OpenCV(3.4.10) C:\projects\opencv-python\opencv\modules\objdetect\src\cascadedetect.cpp:1729: error: (-215:Assertion failed) !empty() in function ‘cv::CascadeClassifier::detectMultiScale’

查看代码中的路径,发现是haarcascade_frontalface_alt.xml这个文件用的是anaconda里面的,而我在项目设置的interpreter用的是安装的python而不是anaconda.

在这里插入图片描述

解决办法:

1)设置project interpreter 用anaconda目录下的python.exe;
2)把该行代码中文件路径重新设置:

cascade = cv2.CascadeClassifier(r’D:\python37\Lib\site-packages\cv2\data\haarcascade_frontalface_alt.

关键是要注意haarcascade_frontalface_alt.xml路径!!!

关系到python和anaconda的使用!

你可能感兴趣的:(人工智能,情感计算)