AttributeError: module 'cv2.cv2' has no attribute 'face'
时间: 2023-10-22 07:05:43 浏览: 166
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为 OpenCV 版本更新所导致的。在新版本中,`cv2.face` 模块已经被移除了。相应的,需要将代码中的 `cv2.face` 替换为 `cv2`,同时使用相应的函数来代替原来的 `cv2.face` 中的函数。比如,`cv2.face.createEigenFaceRecognizer()` 可以替换为 `cv2.face.EigenFaceRecognizer_create()`。请注意,这些函数的名称可能有所不同,具体取决于您所使用的 OpenCV 版本。建议查阅 OpenCV 官方文档以获取最新的函数名称。
阅读全文