1 Star 1 Fork 0

小鱼儿灬/opencv_python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
faceVedio.py 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
小鱼儿灬 提交于 2018-12-01 21:11 . 人脸识别
import dlib
import cv2
# 这个时加载拍摄好的视频, 来识别人脸,但是没成过
# 加载并初始化检测器
detector = dlib.get_frontal_face_detector()
camera = cv2.VideoCapture('D:\\2222.mp4')
if not camera.isOpened():
print("cannot open camear")
exit(0)
j=0
while True:
ret, frame = camera.read()
if not ret:
break
frame_new = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
# 检测脸部
dets = detector(frame_new, 1)
print("Number of faces detected: {}".format(len(dets)))
# 查找脸部位置
for i, face in enumerate(dets):
print("Detection {}: Left: {} Top: {} Right: {} Bottom: {} ".format(
i, face.left(), face.top(), face.right(), face.bottom()))
# 绘制脸部位置
cv2.rectangle(frame, (face.left(), face.top()), (face.right(), face.bottom()), (0, 255, 0), 1)
#保存脸部图片
img1=frame[face.top():face.bottom(),face.left():face.right()]
cv2.imwrite("data/zy"+str(j)+'.jpg',img1)
j=j+1
cv2.imshow("Camera", frame)
key = cv2.waitKey(1)
if key == 27:
break
cv2.destroyAllWindows()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dxh_git/opencv_python.git
git@gitee.com:dxh_git/opencv_python.git
dxh_git
opencv_python
opencv_python
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385