python+dlib人脸识别
2021/8/9 11:35:51
本文主要是介绍python+dlib人脸识别,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
基础篇:
import dlib import cv2 import numpy as np def main(img_path='./1.jpg'): detector = dlib.get_frontal_face_detector() # 人脸box检测器 image = cv2.imread(img_path) # image = dlib.load_rgb_image(img_path) # image = image[:, :, ::-1] res = detector(image, 2) predictor = dlib.shape_predictor('shape_predictor_68_face_landmarks.dat') # 人脸关键点提取(此处是68点,也可以改为5点) detected_landmarks = predictor(image, res[0]) feature = dlib.face_recognition_model_v1( 'dlib_face_recognition_resnet_model_v1.dat') # 人脸128D特征计算,不同人脸特征间可通过余弦相似度计算 f_128 = feature.compute_face_descriptor(image, detected_landmarks) if __name__ == "__main__": main()
GitHub传送门
这篇关于python+dlib人脸识别的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享