人脸识别检测运用Viola-Jones、MTCNN、HOG三种算法写出代码并运行出结果
时间: 2023-12-21 15:03:52 浏览: 75
下面是使用Viola-Jones、MTCNN和HOG种算法进行人脸识别检测的示例代码。
使用Viola-Jones算法进行人脸检测:
```
import cv2
# 加载人脸检测器
face_cascade = cv2.CascadeClassifier(cv2.data.haascades + 'haarcascade_frontalface_default.xml')
# 加载图像
image = cv2.imread('image.jpg')
# 转换为灰度图像
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# 人脸检测
faces = face_cascade.detectMultiScale(gray, 1.1, 4)
# 绘制人脸框
for (x, y, w, h) in faces:
cv2.rectangle(image, (x, y), (x+w, y+h), (255, 0, 0), 2)
# 显示结果
cv2.imshow('Face Detection using Viola-Jones', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
使用MTCNN算法进行人脸检测:
```python
import cv2
from mtcnn import MTCNN
# 加载MTCNN检测器
detector = MTCNN()
# 加载图像
image = cv2.imread('image.jpg')
# 人脸检测
result = detector.detect_faces(image)
# 绘制人脸框
for face in result:
x, y, w, h = face['box']
cv2.rectangle(image, (x, y), (x+w, y+h), (255, 0, 0), 2)
# 显示结果
cv2.imshow('Face Detection using MTCNN', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
使用HOG算法进行人脸检测:
```python
import cv2
# 加载HOG检测器
hog = cv2.HOGDescriptor()
hog.setSVMDetector(cv2.HOGDescriptor_getDefaultPeopleDetector())
# 加载图像
image = cv2.imread('image.jpg')
# 人脸检测
boxes, weights = hog.detectMultiScale(image)
# 绘制人脸框
for (x, y, w, h) in boxes:
cv2.rectangle(image, (x, y), (x+w, y+h), (255, 0, 0), 2)
# 显示结果
cv2.imshow('Face Detection using HOG', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在代码中,需要将'image.jpg'替换为你想要检测人脸的图像路径。运行代码后,将会显示出带有人脸框的图像结果。请确保你已经安装了相应的依赖库(如opencv、mtcnn等)并正确配置了环境。
阅读全文