AttributeError: 'module' object has no attribute 'LBPHFaceRecognizer_create'
时间: 2023-06-22 15:29:28 浏览: 223
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
如果你在使用 OpenCV 3 的时候出现了 `'module' object has no attribute 'LBPHFaceRecognizer_create'` 的错误,可能是因为在 OpenCV 4 中,`LBPHFaceRecognizer_create` 被重命名为 `createLBPHFaceRecognizer`,导致在 OpenCV 3 中无法使用。
你可以尝试将代码中的 `cv2.face.LBPHFaceRecognizer_create()` 替换为 `cv2.face.createLBPHFaceRecognizer()`,这样应该就可以在 OpenCV 3 中使用 LBPH 人脸识别器了。以下是修改后的代码示例:
```python
import cv2
# 加载人脸分类器
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
# 加载 LBPH 人脸识别器
recognizer = cv2.face.createLBPHFaceRecognizer()
# 加载训练好的模型
recognizer.load('train.yml')
# 打开摄像头
cap = cv2.VideoCapture(0)
while True:
# 读取摄像头中的帧
ret, frame = cap.read()
# 将帧转换为灰度图像
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# 检测人脸
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
# 遍历每一个人脸
for (x, y, w, h) in faces:
# 用矩形框标记人脸
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
# 用识别器预测人脸
id_, confidence = recognizer.predict(gray[y:y+h, x:x+w])
# 打印识别结果
print(id_, confidence)
# 显示帧
cv2.imshow('frame', frame)
# 如果按下 q 键则退出循环
if cv2.waitKey(1) == ord('q'):
break
# 释放摄像头
cap.release()
# 关闭窗口
cv2.destroyAllWindows()
```
如果你还是无法使用 LBPH 人脸识别器,可以考虑升级你的 OpenCV 版本到 4 或以上。
阅读全文