资源简介
python 照片人脸识别
代码片段和文件信息
# -*- coding: utf-8 -*-
# 识别图片中的所有人脸并显示出来
# filename : find_faces_in_picture.py
from PIL import Image
import face_recognition
# 将jpg文件加载到numpy 数组中
image = face_recognition.load_image_file(“psb.jpg“)
# 使用默认的给予HOG模型查找图像中所有人脸
# 这个方法已经相当准确了,但还是不如CNN模型那么准确,因为没有使用GPU加速
# 另请参见: find_faces_in_picture_cnn.py
face_locations = face_recognition.face_locations(image)
# 使用CNN模型
# face_locations = face_recognition.face_locations(image number_of_times_to_upsample=0 model=“cnn“)
# 打印:我从图片中找到了 多少 张人脸
print(“I found {} face(s) in this photograph.“.format(len(face_locations)))
# 循环找到的所有人脸
for face_location in face_locations:
# 打印每张脸的位置信息
top right bottom left = face_location
print(“A face is located at pixel location Top: {} Left: {} Bottom: {} Right: {}“.format(top left bottom right))
# 指定人脸的位置信息,然后显示人脸图片
face_image = image[top:bottom left:right]
pil_image = Image.fromarray(face_image)
pil_image.show()
# 或者执行python文件
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 65 2020-08-01 17:00 说明.txt
文件 1328 2020-08-01 16:54 照片人脸识别.py
----------- --------- ---------- ----- ----
1393 2
- 上一篇:恐龙快跑 游戏源码(基于pygame)
- 下一篇:清理PDF中的空白页
相关资源
- VGG16实现人脸检测
- 基于K210开发的人脸特征识别2020电赛(
- 人脸检测和识别(opencv3+python)
- python检测图片是否有人脸
- python3.5 百度ai人脸识别
- python基于人脸检测和人脸识别
- Python-一系列高品质的动漫人脸数据集
- Python-Insightface人脸检测识别的最小化
- Python-pytorch实现的人脸检测和人脸识别
- dlib-19.18.0-cp37-cp37m-linux_armv7l.whl
- 人脸识别算法,双2D2DPCALBP余弦相似度
- MATLAB版本的2Dpca和欧式距离算法
- Python-PCA降维人脸识别,已包含yale数据
- 人脸识别算法 python
- dlib18.17 编译好的python-dlib库 不需要
- python人脸识别截取
- 性别模型库 simple_CNN.81-0.96.hdf5
- 人脸识别图片集(刘德华吴彦祖)
- 利用python和opencv进行人脸识别
- 人脸识别-python-特征脸-PCA
- opencv3+python人脸检测和识别- 完整实战
- 人脸识别python代码187268
- opencv3+python人脸检测和识别- 完整实战
- opencv3+python人脸检测和识别 完整项目
- opencv3视频中检测人脸python
- dlib-19.17.0-py3.7-win-amd64.egg.zip免去复杂
- 人脸检测并打马赛克源码
- 西电数据挖掘作业——VSM人脸识别算
- 基于Tensorflow的人脸识别源码
-
树莓派人脸识别python代码及xm
l模型
评论
共有 条评论