1.pip install opencv
2.pip install face_recognition
期间在安装依赖包dlib时遇到问题,解决见: http://kissmett.iteye.com/blog/2409857
3.通过摄像头实时在获取的帧上进行人脸识别(较卡顿)
facerecognition.py
# -*- coding: UTF-8 -*- import face_recognition import cv2 import os import ft2 #中文支持,加载微软雅黑字体 ft = ft2.put_chinese_text('msyh.ttf') # 获取摄像头# 0(默认) video_capture = cv2.VideoCapture(0) # 加载待识别人脸图像并识别。 basefacefilespath ="images"#faces文件夹中放待识别任务正面图,文件名为人名,将显示于结果中 baseface_titles=[] #图片名字列表 baseface_face_encodings=[] #识别所需人脸编码结构集 #读取人脸资源 for fn in os.listdir(basefacefilespath): #fn 人脸文件名 baseface_face_encodings.append(face_recognition.face_encodings(face_recognition.load_image_file(basefacefilespath+"/"+fn))[0]) fn=fn[:(len(fn)-4)] baseface_titles.append(fn)# while True: # 获取一帧视频 ret, frame = video_capture.read() # 人脸检测,并获取帧中所有人脸编码 face_locations = face_recognition.face_locations(frame) face_encodings = face_recognition.face_encodings(frame, face_locations) # 遍历帧中所有人脸编码 for (top, right, bottom, left), face_encoding in zip(face_locations, face_encodings): # 与baseface_face_encodings匹配否? for i,v in enumerate(baseface_face_encodings): match = face_recognition.compare_faces([v], face_encoding,tolerance=0.5) name = "?" if match[0]: name = baseface_titles[i] break name=unicode(name,'gb2312')#gbk is also ok. print(name) # 围绕脸的框 cv2.rectangle(frame, (left, top), (right, bottom), (0, 0, 255), 2) # 框下的名字(即,匹配的图片文件名) cv2.rectangle(frame, (left, bottom), (right, bottom+35), (0, 0, 255), cv2.FILLED) frame = ft.draw_text(frame, (left + 2, bottom + 12), name, 16, (255, 255, 255)) # show结果图像 cv2.imshow('Video', frame) # 按q退出 if cv2.waitKey(1) & 0xFF == ord('q'): break # 释放摄像头中的流 video_capture.release() cv2.destroyAllWindows()
ft2.py
# -*- coding: utf-8 -*- import numpy as np import freetype import copy import pdb class put_chinese_text(object): def __init__(self, ttf): self._face = freetype.Face(ttf) def draw_text(self, image, pos, text, text_size, text_color): ''' draw chinese(or not) text with ttf :param image: image(numpy.ndarray) to draw text :param pos: where to draw text :param text: the context, for chinese should be unicode type :param text_size: text size :param text_color:text color :return: image ''' self._face.set_char_size(text_size * 64) metrics = self._face.size ascender = metrics.ascender/64.0 #descender = metrics.descender/64.0 #height = metrics.height/64.0 #linegap = height - ascender + descender ypos = int(ascender) if not isinstance(text, unicode): text = text.decode('utf-8') img = self.draw_string(image, pos[0], pos[1]+ypos, text, text_color) return img def draw_string(self, img, x_pos, y_pos, text, color): ''' draw string :param x_pos: text x-postion on img :param y_pos: text y-postion on img :param text: text (unicode) :param color: text color :return: image ''' prev_char = 0 pen = freetype.Vector() pen.x = x_pos << 6 # div 64 pen.y = y_pos << 6 hscale = 1.0 matrix = freetype.Matrix(int(hscale)*0x10000L, int(0.2*0x10000L),\ int(0.0*0x10000L), int(1.1*0x10000L)) cur_pen = freetype.Vector() pen_translate = freetype.Vector() image = copy.deepcopy(img) for cur_char in text: self._face.set_transform(matrix, pen_translate) self._face.load_char(cur_char) kerning = self._face.get_kerning(prev_char, cur_char) pen.x += kerning.x slot = self._face.glyph bitmap = slot.bitmap cur_pen.x = pen.x cur_pen.y = pen.y - slot.bitmap_top * 64 self.draw_ft_bitmap(image, bitmap, cur_pen, color) pen.x += slot.advance.x prev_char = cur_char return image def draw_ft_bitmap(self, img, bitmap, pen, color): ''' draw each char :param bitmap: bitmap :param pen: pen :param color: pen color e.g.(0,0,255) - red :return: image ''' x_pos = pen.x >> 6 y_pos = pen.y >> 6 cols = bitmap.width rows = bitmap.rows glyph_pixels = bitmap.buffer for row in range(rows): for col in range(cols): if glyph_pixels[row*cols + col] != 0: img[y_pos + row][x_pos + col][0] = color[0] img[y_pos + row][x_pos + col][1] = color[1] img[y_pos + row][x_pos + col][2] = color[2] if __name__ == '__main__': # just for test import cv2 line = '你好' img = np.zeros([300,300,3]) color_ = (0,255,0) # Green pos = (3, 3) text_size = 24 #ft = put_chinese_text('wqy-zenhei.ttc') ft = put_chinese_text('msyh.ttf') image = ft.draw_text(img, pos, line, text_size, color_) cv2.imshow('ss', image) cv2.waitKey(0)
将msyh.ttf 微软雅黑字体文件copy到同级目录,在同级images文件夹下,以人名命名正面脸图.
运行, python facerecognition.py
卡顿,跳帧,
结果如图:
base faces
识别:
仅图像检测(不识别)
相关推荐
基于开源人脸库face_recognition的人脸识别,精确率达到99.8
在本文中,我们将深入探讨一个名为"face_recognition"的开源库,它为Python开发者提供了一种简单而强大的方式来实现人脸识别。 "face_recognition"库基于Dlib库中的HOG(Histogram of Oriented Gradients)特征和...
在本文中,我们将深入探讨如何使用Python中的`face_recognition`库进行人脸检测与识别,该库基于dlib的深度学习算法。`face_recognition`是一个功能强大的工具,它简化了在图像和视频中处理人脸的任务,使得非专业...
在本项目中,我们将深入探讨如何使用Python和PCA进行人脸识别。 首先,我们需要导入必要的库。`numpy`用于数值计算,`pandas`用于数据处理,`matplotlib`用于可视化,`face_recognition`库则是专门用于人脸识别的。...
在这个项目中,我们可能会使用到的库是`face_recognition`,这是一个广泛使用的Python库,用于人脸识别和人脸位置检测。它基于Dlib库的高效实现,能够处理灰度图像和彩色图像,并且支持多种人脸识别算法。 1. **...
《人脸识别技术深度解析——基于face_recognition库》 人脸识别技术是人工智能领域的重要组成部分,它在安全、监控、社交网络等领域有着广泛的应用。本项目“face_recognition-master”提供了一套可移植的人脸识别...
在本项目"FaceRecognition-master.zip"中,我们探讨的核心主题是使用Python进行人脸识别,这是一个基于卷积神经网络(Convolutional Neural Networks, CNN)的技术。人脸识别是计算机视觉领域的一个重要分支,它涉及...
在Python的世界里,`face_recognition`库是一个强大的工具,专用于人脸识别。它基于Dlib的预先训练好的模型,能够方便地实现从图像或视频中检测、识别和比较人脸。这个库非常适合那些想要快速实现人脸识别功能,而...
本项目是世界上最简洁的人脸识别库,你可以使用Python和命令行工具提取、识别、操作人脸。本项目的人脸识别是基于业内领先的C++开源库 dlib中的深度学习模型,用Labeled Faces in the Wild人脸数据集进行测试,有...
本资源包“人脸识别.rar_face recognition_python_python人脸识别_人脸_识别”提供了使用Python和OpenCV进行人脸识别的基础教程和示例代码。 OpenCV(Open Source Computer Vision Library)是一个开源的计算机视觉...
本教程将深入探讨如何结合这两个库进行高效的人脸识别。 首先,OpenCV是一个强大的计算机视觉库,它提供了丰富的图像和视频处理功能,包括人脸检测。OpenCV中的Haar级联分类器是常用的人脸检测方法,它通过预训练的...
在本项目中,我们关注的是一个名为"face_recognition.zip"的压缩包文件,它包含了一个基于Python的人脸识别程序。这个程序很可能使用了流行的"face_recognition"库,这是一个强大的开源工具,专为处理面部识别任务而...
在本项目中,我们主要探讨的是使用Python进行人脸识别的技术,特别是通过`face_recognition`库实现这一功能。`face_recognition`是一个强大的Python库,它提供了简单易用的API,可以方便地处理图像和视频中的人脸...
Face_recognition库可以在实现在数据集比较小的情况下达到更高的准确度,只需要一张照片就可以了。所以你只需要拍一张照片来存储你的脸,这样你就可以把它存储在数据集中。采用python语言进行编写,实现人脸录入、...
在实际应用中,你可以使用face_recognition库进行人脸检测、人脸特征提取、人脸对比和人脸识别。例如,通过以下简单的代码,你可以检测一张图片中的人脸: ```python import face_recognition # 加载图像 image = ...
在本文中,我们将深入探讨"face_detect_orgin_人脸识别_python人脸特征_facerecognition_python_源码"这一主题,这是关于使用Python进行人脸识别和眼睛识别的项目。该项目利用了强大的facerecognition库,该库是...
能够实现调用摄像头,实时检测人脸,实时注册捕捉照片存入本地,同时多人识别的人脸识别程序的源代码,需要环境为face_recognition,dlib,cv2,numpy等,可自行在pycharm等配置环境。
dlib库训练好的人脸识别的模型,使用python,导入dlib库和模型,就可以完成人脸识别
深度学习(DL,Deep Learning)是机器学习(ML,Machine...自从2006年,Hinton等提出快速计算受限玻耳兹曼机(RBM)网络权值及偏差的CD-K算法以后,RBM就成了增加神经网络深度的有力工具,导致后面使用广泛的DBN(由Hin