下拉刷新
Repository Details
Shared bynavbar_avatar
repo_avatar
HelloGitHub Rating
0 ratings
上手快速、简单易用的人脸识别库
FreeMIT
Claim
Collect
Share
55.4k
Stars
Yes
Chinese
Python
Language
No
Active
52
Contributors
819
Issues
No
Organization
1.2.2
Latest
1w
Forks
MIT
License
More
face_recognition image
上手快速、简单易用的人脸识别库。该库使用 dlib 顶尖的深度学习人脸识别技术构建,在户外脸部检测数据库基准(Labeled Faces in the Wild benchmark)上的准确率高达 99.38%。同时提供了一个简单的面部识别命令行工具,允许您对来自命令行的图像文件夹进行面部识别。完整的开发文档和应用案例,并且兼容树莓派系统(对配置要求低),对于初学者来说可以通过这个项目感受人脸识别或机器学习带来的乐趣。示例代码: ```python # 定位图片中的所有人脸: import face_recognition image = face_recognition.load_image_file("your_file.jpg") face_locations = face_recognition.face_locations(image) # 识别人脸关键点,包括眼睛、鼻子、嘴和下巴 import face_recognition image = face_recognition.load_image_file("your_file.jpg") face_landmarks_list = face_recognition.face_landmarks(image) ```
Included in:
Vol.45

Comments

Rating:
No comments yet