face_recognition图像采集函数
时间: 2023-09-27 18:08:24 浏览: 87
你可以使用Python中的face_recognition库来采集图像。以下是一个简单的示例:
```python
import face_recognition
import cv2
# 打开摄像头
video_capture = cv2.VideoCapture(0)
# 采集图像
while True:
ret, frame = video_capture.read()
# 转换为RGB格式
rgb_frame = frame[:, :, ::-1]
# 查找人脸位置
face_locations = face_recognition.face_locations(rgb_frame)
# 在图像上标记人脸位置
for (top, right, bottom, left) in face_locations:
cv2.rectangle(frame, (left, top), (right, bottom), (0, 0, 255), 2)
# 显示图像
cv2.imshow('Video', frame)
# 按'q'键退出
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# 释放资源
video_capture.release()
cv2.destroyAllWindows()
```
该代码会打开计算机上的摄像头,并在图像中查找人脸位置。你可以按下'q'键退出程序,并保存图像以用于训练人脸识别模型。
阅读全文