ERROR:0@12.807] global persistence.cpp:505 cv::FileStorage::Impl::open Can't open file: 'haarcascade_frontalface_default.xml' in read mode Exception in Tkinter callback Traceback (most recent call last): File "D:\python\lib\tkinter\__init__.py", line 1705, in __call__ return self.func(*args) File "D:/python-zuoye/computer_vision/work/vision_train/class_14/train_5_30.py", line 155, in phopro7 minSize=(5, 5) cv2.error: OpenCV(4.7.0) D:\a\opencv-python\opencv-python\opencv\modules\objdetect\src\cascadedetect.cpp:1689: error: (-215:Assertion failed) !empty() in function 'cv::CascadeClassifier::detectMultiScale'
时间: 2023-11-23 13:40:25 浏览: 448
Akka.Persistence.SqlServer:Akka.Persistence.SqlServer提供程序
这似乎是一个 OpenCV 的错误,出现在使用 Haar 级联分类器进行人脸检测时。错误信息指出不能以只读模式打开文件 haarcascade_frontalface_default.xml。这个文件包含了人脸检测算法的数据,你需要确保它在正确的位置,并且文件名正确。如果文件确实存在,你可以尝试以写模式打开它,或者使用绝对路径来打开它。另外,你还需要确保你已经安装了 OpenCV 库,并且版本正确。
阅读全文