900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > Python 调用摄像头进行人脸识别

Python 调用摄像头进行人脸识别

时间:2024-03-09 20:49:49

相关推荐

Python 调用摄像头进行人脸识别

之前发过一篇关于对图片上人脸检测的博客。 链接:/weixin_43582101/article/details/88702254

本篇则是讲解通过计算机摄像头来识别人脸并捕捉人脸位置。源码加依赖在最后会完整托管在github上。

测试结果如下:

直接贴代码了,基本上都有注释。就不多说了。

导入要使用的模块 cv2,tensorflow

import tensorflow as tffrom face_check import detect_faceimport cv2import numpy as np

tf.Graph() 表示实例化了一个用于 tensorflow 计算和表示用的数据流图

print('Creating and loading ')with tf.Graph().as_default():# tf.Graph() 表示实例化了一个用于 tensorflow 计算和表示用的数据流图# tf.Graph().as_default() 表示新生成的图作为整个 tensorflow 运行环境的默认图#tf.ConfigProto()创建session的时候用来对session进行参数配置sess = tf.Session(config=tf.ConfigProto(log_device_placement=False))# log_device_placement记录设备指派情况with sess.as_default(): # 创建一个默认会话pnet, rnet, onet = detect_face.create_mtcnn(sess, None)

定义检测函数

def detection(image):minsize = 20 # 最小尺寸threshold = [0.6, 0.7, 0.7] # 三个步骤的阈值factor = 0.709 # 比例项间的比率# detect with RGB imageh, w = image.shape[:2]bounding_boxes, _ = detect_face.detect_face(image, minsize, pnet, rnet, onet, threshold, factor)#检测图像中的人脸,并为其返回包围框和点。img:输入图像 最小面尺寸:最小面尺寸#pnet, rnet, onet: caffemodel#阈值:阈值=[th1, th2, th3], th1-3为三步阈值#factor:用于创建一个扩展的因素金字塔脸大小的检测图像中。用于创建图像中检测到的面部尺寸的比例金字塔的因素if len(bounding_boxes) < 1:print("can't detect face in the frame")return None #未检测到则返回空print("检测到 %d 个人脸"% len(bounding_boxes)) # 检测到的人脸数

用矩形把找到的形状包起来

bgr = cv2.cvtColor(image, cv2.COLOR_RGB2BGR) # 图像颜色空间转换for i in range(len(bounding_boxes)):det = np.squeeze(bounding_boxes[i, 0:4])bb = np.zeros(4, dtype=np.int32)# x1, y1, x2, y2margin = 0bb[0] = np.maximum(det[0] - margin / 2, 0)#np.maximum求最大值bb[1] = np.maximum(det[1] - margin / 2, 0)bb[2] = np.minimum(det[2] + margin / 2, w)bb[3] = np.minimum(det[3] + margin / 2, h)cv2.rectangle(bgr, (bb[0], bb[1]), (bb[2], bb[3]), (0, 0, 255), 2, 8, 0)cv2.imshow("detected faces", bgr) # cv2.rectangle 用矩形把找到的形状包起来return bgr

打开本地摄像头

capture = cv2.VideoCapture(0) # VideoCapture 读取本地视频和打开摄像头height = capture.get(cv2.CAP_PROP_FRAME_HEIGHT) # 计算视频的高width = capture.get(cv2.CAP_PROP_FRAME_WIDTH) # 计算视频的宽out = cv2.VideoWriter("D:/demo.mp4", cv2.VideoWriter_fourcc('D', 'I', 'V', 'X'), 15, (np.int(width), np.int(height)), True)# cv2.VideoWriter 保存摄像头视频 #VideoWriter_fourcc()输入四个字符代码即可得到对应的视频编码器while True:ret, frame = capture.read()if ret is True:frame = cv2.flip(frame, 1)#cv2.flip 图像翻转# cv2.imshow("frame", frame)rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) #cvtColor()颜色空间转换函数result = detection(rgb)out.write(result)c = cv2.waitKey(10)if c == 27:breakelse:breakcv2.destroyAllWindows()#关闭窗口

Over,下面可以跑起来进行测试了

先用两个人物测试。

真人测试。拒绝露脸

github源码地址: /lixi5338619/camera_face_check

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。