1 Star 4 Fork 0

上海市虹口区青少年活动中心/树莓派人脸识别防近视系统Facial Recognition Using RaspberryPi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
collect.py 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
徐则宇 提交于 2020-12-19 14:04 . first commit
#coding=utf8
import cv2
import os
cap = cv2.VideoCapture(0)
face_detector = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
face_id = input('\n enter user id:')
print('\n Initializing face capture. Look at the camera and wait ...')
count = 0
while True:
# 从摄像头读取图片
sucess, img = cap.read()
# 转为灰度图片
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 检测人脸
faces = face_detector.detectMultiScale(gray, 1.3, 5)
for (x, y, w, h) in faces:
cv2.rectangle(img, (x, y), (x+w, y+w), (255, 0, 0))
count += 1
# 保存图像
cv2.imwrite("Facedata/User." + str(face_id) + '.' + str(count) + '.jpg', gray[y: y + h, x: x + w])
cv2.imshow('image', img)
# 保持画面的持续。
k = cv2.waitKey(1)
if k == 27: # 通过esc键退出摄像
break
elif count >= 1000: # 得到1000个样本后退出摄像
break
# 关闭摄像头
cap.release()
cv2.destroyAllWindows()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/HKQQSNHDZX/facial-recognition.git
git@gitee.com:HKQQSNHDZX/facial-recognition.git
HKQQSNHDZX
facial-recognition
树莓派人脸识别防近视系统Facial Recognition Using RaspberryPi
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385