1、人脸识别代码
直接上代码:
import cv2
# 加载训练数据集文件
recogizer = cv2.face.LBPHFaceRecognizer_create()
recogizer.read('trainer/trainer.yml')
# 准备识别的图片
img = cv2.imread('images/lisa.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
face_detector = cv2.CascadeClassifier(
"data//haarcascade_frontalface_alt.xml")
faces = face_detector.detectMultiScale(gray)
for x, y, w, h in faces:
cv2.rectangle(img, (x, y), (x + w, y + h), (0, 255, 0), 2)
# 人脸识别
id, confidence = recogizer.predict(gray[y:y + h, x:x + w])
print('标签id:', id, '置信评分:', confidence)
cv2.imshow('result', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
其中的haarcascade_frontalface_alt.xml
文件需要下载到本地,大家可以去百度网盘下载
链接:https://pan.baidu.com/s/1HwWfptz1KGDAUF7hHp5lHw?pwd=3535
提取码:3535
2、识别效果
3、如果遇到以下问题
安装opencv-contrib-python1
包即可解决
pip install opencv-contrib-python