资源简介
可部署到云主机(Heroku,AWS……)!
使用dlib最先进的面部识别功能构建而成,具有深度学习功能。该模型在Wild标记的Labeled Faces中具有99.38%的准确度 。
这提供了一个简单的命令行工具,允许从命令行对图像文件夹进行面部识别!
1、找到图片中出现的所有面孔
2、获取每个人的眼睛,鼻子,嘴巴和下巴的位置和轮廓。
3、应用数字化妆
4、识别每张照片中出现的人物。
5、可以将此库与其他Python库一起使用来进行实时人脸识别。
使用要求
Python 3.3+或Python 2.7
macOS或Linux(Windows未正式支持,但可能有效)
人脸检测
在照片中找到面孔
在照片中找到面孔(使用深度学习)
使用GPU(使用深度学习)批量查找图像中的面孔
使用网络摄像头模糊实时视频中的所有人脸(需要安装OpenCV)
面部特征
识别照片中的特定面部特征
应用(可怕的丑陋)数字化妆
面部识别
根据已知人物的照片查找并识别照片中的未知面部
识别并在照片中的每个人周围绘制框
通过数字面部距离比较面部而不仅仅是真/假匹配
使用网络摄像头识别实时视频中的人脸 - 简单/慢速版本(需要安装OpenCV)
使用网络摄像头识别实时视频中的人脸 - 更快的版本(需要安装OpenCV)
识别视频文件中的面部并写出新的视频文件(需要安装OpenCV)
用相机识别Raspberry Pi上的脸部
运行Web服务以通过HTTP识别面部(需要安装Flask)
使用K近邻分类器识别面部
代码片段和文件信息
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open(‘README.rst‘) as readme_file:
readme = readme_file.read()
with open(‘HISTORY.rst‘) as history_file:
history = history_file.read()
requirements = [
‘face_recognition_models>=0.3.0‘
‘Click>=6.0‘
‘dlib>=19.7‘
‘numpy‘
‘Pillow‘
]
test_requirements = [
‘tox‘
‘flake8==2.6.0‘
]
setup(
name=‘face_recognition‘
version=‘1.2.3‘
description=“Recognize faces from Python or from the command line“
long_description=readme + ‘\n\n‘ + history
author=“Adam Geitgey“
author_email=‘ageitgey@gmail.com‘
url=‘https://github.com/ageitgey/face_recognition‘
packages=[
‘face_recognition‘
]
package_dir={‘face_recognition‘: ‘face_recognition‘}
package_data={
‘face_recognition‘: [‘models/*.dat‘]
}
entry_points={
‘console_scripts‘: [
‘face_recognition=face_recognition.face_recognition_cli:main‘
‘face_detection=face_recognition.face_detection_cli:main‘
]
}
install_requires=requirements
license=“MIT license“
zip_safe=False
keywords=‘face_recognition‘
classifiers=[
‘Development Status :: 4 - Beta‘
‘Intended Audience :: Developers‘
‘License :: OSI Approved :: MIT License‘
‘Natural Language :: English‘
“Programming Language :: Python :: 2“
‘Programming Language :: Python :: 2.6‘
‘Programming Language :: Python :: 2.7‘
‘Programming Language :: Python :: 3‘
‘Programming Language :: Python :: 3.3‘
‘Programming Language :: Python :: 3.4‘
‘Programming Language :: Python :: 3.5‘
‘Programming Language :: Python :: 3.6‘
]
test_suite=‘tests‘
tests_require=test_requirements
)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-26 22:54 face_recognition-python\
文件 292 2018-08-22 02:33 face_recognition-python\.editorconfig
文件 795 2018-08-22 02:33 face_recognition-python\.gitignore
文件 472 2018-08-22 02:33 face_recognition-python\.travis.yml
文件 573 2018-08-22 02:33 face_recognition-python\AUTHORS.rst
文件 2794 2018-08-22 02:33 face_recognition-python\CONTRIBUTING.rst
文件 1347 2018-08-22 02:33 face_recognition-python\Dockerfile
目录 0 2018-08-22 02:33 face_recognition-python\docs\
文件 28 2018-08-22 02:33 face_recognition-python\docs\authors.rst
文件 8789 2018-08-22 02:33 face_recognition-python\docs\conf.py
文件 33 2018-08-22 02:33 face_recognition-python\docs\contributing.rst
文件 178 2018-08-22 02:33 face_recognition-python\docs\face_recognition.rst
文件 28 2018-08-22 02:33 face_recognition-python\docs\history.rst
文件 302 2018-08-22 02:33 face_recognition-python\docs\index.rst
文件 1187 2018-08-22 02:33 face_recognition-python\docs\installation.rst
文件 6479 2018-08-22 02:33 face_recognition-python\docs\make.bat
文件 6802 2018-08-22 02:33 face_recognition-python\docs\Makefile
文件 85 2018-08-22 02:33 face_recognition-python\docs\modules.rst
文件 27 2018-08-22 02:33 face_recognition-python\docs\readme.rst
文件 1614 2018-08-22 02:33 face_recognition-python\docs\usage.rst
目录 0 2018-08-22 02:33 face_recognition-python\examples\
文件 182581 2018-08-22 02:33 face_recognition-python\examples\alex-lacamoire.png
文件 2450 2018-08-22 02:33 face_recognition-python\examples\benchmark.py
文件 353723 2018-08-22 02:33 face_recognition-python\examples\biden.jpg
文件 1741 2018-08-22 02:33 face_recognition-python\examples\blur_faces_on_webcam.py
文件 1443 2018-08-22 02:33 face_recognition-python\examples\digital_makeup.py
文件 3086 2018-08-22 02:33 face_recognition-python\examples\facerec_from_video_file.py
文件 2793 2018-08-22 02:33 face_recognition-python\examples\facerec_from_webcam.py
文件 3670 2018-08-22 02:33 face_recognition-python\examples\facerec_from_webcam_faster.py
文件 1899 2018-08-22 02:33 face_recognition-python\examples\facerec_on_raspberry_pi.py
文件 1866 2018-08-22 02:33 face_recognition-python\examples\face_distance.py
............此处省略70个文件信息
相关资源
- Python深度学习(中文版) 超清带书签
- Python机器学习
- numpy-1.17.4-cp38-cp38-win_amd64.whl
- 源码python数据挖掘入门与实践源码
- Python数据科学手册(PDF)
- Python测试驱动开发:使用Django、Sele
- Python Data Analytics 无水印pdf 0分
- Deep Learning with Applications Using Python C
- 信用风险建模:理论基础、诊断工具
- Python编程导论(第2版).rar
- 图灵书籍(Python数据处理.pdf+代码)
- Python爬虫抓取东方财富网股票数据并
- Grokking Deep Learning 正式版pdf
- python游戏编程入门源代码
- 流畅的python-LucianoRamalho.pdf
- torch-1.1.0-cp36-cp36m-linux_aarch64.whl
- scipy-1.0.1-cp36-cp36m-win_amd64.whl
- 《Python机器学习及实践从零开始通往
- python基础教程第二版
- 流畅的Python 官方中文 高清完整.pdf版
- Head First Python(第2版)
- Python数据分析基础.pdf 清晰中文完整版
- numpy-1.18.1-cp38-cp38-win_amd64.zip
- 全套python ppt
- python数据分析之numpy-pandas-matplotlib-常
- python决策树代码
- python版本消消乐
- Python入门教程完整版懂中文就能学会
- python程序爬取股票每分钟数据并且进
- Python学习手册(第4版中文、第5版英文
评论
共有 条评论