基于python的人脸识别系统论文_基于Python和命令行人脸识别项目(系统三)

本文介绍了使用Python的face_recognition库进行人脸识别,通过提取鞠婧祎面部关键点展示其工作原理,并实现了为鞠婧祎涂美妆的功能,包括改变眉毛颜色、唇彩和眼部效果。
摘要由CSDN通过智能技术生成

接着系列二,继续开始我们face_recognition项目.

face_recognition项目.为什么能识别人脸,是因为人脸有面部关键点。

案例:提取鞠婧祎面部关键点

在knowe_people文件夹中创建find_facial_features_in_picture.py文件并写入以下代码:

from PIL import Image, ImageDraw

import face_recognition

# Load the jpg file into a numpy array

image = face_recognition.load_image_file("鞠婧祎.jpg")

# Find all facial features in all the faces in the image

face_landmarks_list = face_recognition.face_landmarks(image)

print("I found {} face(s) in this photograph.".format(len(face_landmarks_list)))

# Create a PIL imagedraw object so we can draw on the picture

pil_image = Image.fromarray(image)

d = ImageDraw.Draw(pil_image)

for face_landmarks in face_landmarks_list:

# Print the location of each facial feature in this image

for facial_feature in face_landmark

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值