recognizer = cv2.face.EigenFaceRecognizer_create() AttributeError: module 'cv2' has no attribute 'face'
时间: 2023-06-22 08:47:00 浏览: 349
face recognize.rar_face Recognize_face recognize 库_face recogniz
这个错误通常是因为您的OpenCV版本不支持面部识别模块(cv2.face)导致的。您可以尝试更新OpenCV版本或使用其他面部识别库。如果您正在使用较旧的OpenCV版本,则可以通过使用以下命令安装带有face模块的OpenCV版本来解决此问题:
```
pip install opencv-contrib-python
```
这将安装带有face模块的最新版本的OpenCV。如果问题仍然存在,请检查安装的OpenCV版本是否支持面部识别模块。
阅读全文