当前位置:网站首页>Three methods for extracting facial features
Three methods for extracting facial features
2022-08-05 10:50:00 【HUAWEI CLOUD】
@[toc]
第一种方法 直接使用dlib.
安装dlib方法:
https://blog.csdn.net/hhhhhhhhhhwwwwwwwwww/article/details/121470556
思路:
1、使用dlib.get_frontal_face_detector()方法检测人脸的位置.
2、使用 dlib.shape_predictor()方法得到人脸的关键点.
3、使用dlib.face_recognition_model_v1()方法提取特征.
新建face_embedding1.py,插入代码:
import dlib,numpyimport cv2# 人脸关键点检测器predictor_path = "shape_predictor_68_face_landmarks.dat"# 人脸识别模型、提取特征值face_rec_model_path = "dlib_face_recognition_resnet_model_v1.dat"predictor_path是恋人关键点检测器模型的路径.
face_rec_model_path是提取人脸特征的路径.
# 加载模型detector = dlib.get_frontal_face_detector() #人脸检测sp = dlib.shape_predictor(predictor_path) #关键点检测facerec = dlib.face_recognition_model_v1(face_rec_model_path)# 编码分别初始化人脸检测、关键点检测、特征编码方法.
image_path='train_images/11.jpg'image = cv2.imread(image_path)image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)# 人脸检测dets = detector(image, 1)if len(dets)==1: print('检测到人脸')shape = sp(image, dets[0])# 关键点# 提取特征face_descriptor = facerec.compute_face_descriptor(image, shape)#获取到128位的编码v = numpy.array(face_descriptor)print(v)读取图片.然后将图片转为RGB格式.
检测人脸.
获取人脸的68个关键点.
获取128位人脸编码.
使用感受: 使用dlib.get_frontal_face_detector()检测人脸效果一般,模糊的人脸检测不出来.速度上也是比较慢.
第二种方法 使用深度学习方法查找人脸,dlib提取特征.
思路:
这种方法使用 cv2自带的dnn.readNetFromCaffe方法,加载深度学习模型实现人脸的检测.然后继续使用dlib提取人脸特征.
新建face_embedding2.py,插入代码:
import dlib,numpyimport cv2# 人脸关键点检测器predictor_path = "shape_predictor_68_face_landmarks.dat"# 人脸识别模型、提取特征值face_rec_model_path = "dlib_face_recognition_resnet_model_v1.dat"prototxt_path = 'deploy.proto.txt'model_path = 'res10_300x300_ssd_iter_140000_fp16.caffemodel'导入需要的包.
定义模型的路径.
net = cv2.dnn.readNetFromCaffe(prototxt_path, model_path)sp = dlib.shape_predictor(predictor_path) #关键点检测facerec = dlib.face_recognition_model_v1(face_rec_model_path)# 编码初始化人脸检测模型、关键点检测模型、人脸特征提取模型.
image_path='train_images/11.jpg'image = cv2.imread(image_path)image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)(h, w) = image.shape[:2]blob = cv2.dnn.blobFromImage(cv2.resize(image, (300, 300)), 1.0, (300, 300), (104.0, 177.0, 123.0))net.setInput(blob)detections = net.forward()startX, startY, endX, endY = 0, 0, 0, 0for i in range(0, detections.shape[2]): # extract the confidence (i.e., probability) associated with the # prediction confidence = detections[0, 0, i, 2] # filter out weak detections by ensuring the `confidence` is # greater than the minimum confidence if confidence > 0.5: # compute the (x, y)-coordinates of the bounding box for the # object box = detections[0, 0, i, 3:7] * numpy.array([w, h, w, h]) (startX, startY, endX, endY) = box.astype("int") breakrect = dlib.rectangle(startX, startY, endX, endY)这部分的代码主要是人脸检测逻辑.
读取图片,并将其改为RGB格式.
获取图片的大小.
初始化blob.
net.forward()计算人脸的位置.
遍历检测结果
如果置信度大于0.5,则认为是合格的人脸.
计算出人脸的坐标.
将坐标转为dlib.rectangle对象.
shape = sp(image, rect)print(shape)# 提取特征face_descriptor = facerec.compute_face_descriptor(image, shape)#获取到128位的编码v = numpy.array(face_descriptor)print(v)计算人脸的关键点.
提取人脸的特征.
使用感受:使用深度学习模型提取人脸特征,无论速度还是准确率都有很大的提高,即使很模糊的图像依然能检测到.
第三种使用insightface提取人脸特征
InsightFace 是一个开源的 2D&3D 深度人脸分析工具箱,其中高效地实现了丰富多样的人脸识别、人脸检测和人脸对齐算法,并且针对训练和部署进行了优化,在多项算法测评、比赛获得优胜.
安装InsightFace
pip install insightfacepip install onnxruntime-gpu==1.9.0 注意:onnxruntime安装1.9以下的版本.
提取特征
新建face_embedding3.py 插入代码:
import insightfaceimport cv2model = insightface.app.FaceAnalysis()model.prepare(ctx_id=0, det_thresh=0.45)face_img = cv2.imread('train_images/11.jpg')res = model.get(face_img)print('embedding: ', res[0].embedding) 初始化FaceAnalysis()模型.
设置置信度位0.45.
读取图片
使用模型预测.
打印人脸特征res[0].embedding.
除了能人脸特征外,还有一些其他的属性,比如:bbox、kps、landmark_3d_68、landmark_2d_106、age、gender .可以通过res[0].keys()查看.
使用感受:速度比较慢,精度还行.
完整的代码和模型:
https://download.csdn.net/download/hhhhhhhhhhwwwwwwwwww/85345364
边栏推荐
- 牛刀小试基本语法,Go lang1.18入门精炼教程,由白丁入鸿儒,go lang基本语法和变量的使用EP02
- 这份阿里强推的并发编程知识点笔记,将是你拿大厂offer的突破口
- Header file search rules when compiling with GCC
- HDD杭州站•ArkUI让开发更灵活
- 【OpenCV】-仿射变换
- 【C语言指针】用指针提升数组的运算效率
- 《分布式云最佳实践》分论坛,8 月 11 日深圳见
- 2022杭电多校 第6场 1008.Shinobu Loves Segment Tree 规律题
- 第五章:activiti流程分流判断,判断走不同的任务节点
- 导火索:OAuth 2.0四种授权登录方式必读
猜你喜欢

FPGA:开发环境Vivado的使用

Use KUSTO query statement (KQL) to query LOG on Azure Data Explorer Database

产品太多了,如何实现一次登录多产品互通?

three objects are arranged in a spherical shape around the circumference

GPU-CUDA-图形渲染分析

登录功能和退出功能(瑞吉外卖)

Introduction to SD NAND Flash!

sqlserver编写通用脚本实现获取一年前日期的方法

【MySQL基础】-【数据处理之增删改】

SQL Outer Join Intersection, Union, Difference Query
随机推荐
Chapter 5: Activiti process shunting judgment, judging to go to different task nodes
PCB layout must know: teach you to correctly lay out the circuit board of the op amp
机器学习-基础知识 - Precision, Recall, Sensitivity, Specificity, Accuracy, FNR, FPR, TPR, TNR, F1 Score, Bal
Oracle的自动段空间管理怎么关闭?
Dynamics 365Online PDF导出及打印
大佬们 我是新手,我根据文档用flinksql 写个简单的用户访问量的count 但是执行一次就结束
2022 Huashu Cup Mathematical Modeling Ideas Analysis and Exchange
导火索:OAuth 2.0四种授权登录方式必读
数分面试(一)----与业务相关
Introduction to SD NAND Flash!
The fuse: OAuth 2.0 four authorized login methods must read
OpenHarmony如何查询设备类型
SQL外连接之交集、并集、差集查询
字节一面:TCP 和 UDP 可以使用同一个端口吗?
three.js debugging tool dat.gui use
第五章:activiti流程分流判断,判断走不同的任务节点
012_SSS_ Improving Diffusion Model Efficiency Through Patching
abc262-D(dp)
linux下oracle常见操作以及日常积累知识点(函数、定时任务)
【加密解密】明文加密解密-已实现【已应用】