首页 > 编程语言 >用 20 行 python 代码实现人脸识别!

用 20 行 python 代码实现人脸识别!

时间:2023-04-26 12:00:25浏览次数:54  
标签:人脸识别 20 python image face encodings landmarks recognition fill

阅读文本大概需要 11分钟。

今天给大家介绍一个世界上最简洁的人脸识别库 face_recognition,你可以使用 Python 和命令行工具进行提取、识别、操作人脸。

基于业内领先的 C++ 开源库 dlib 中的深度学习模型,用 Labeled Faces in the Wild 人脸数据集进行测试,有高达99.38%的准确率。

1.安装

最好是使用 Linux 或 Mac 环境来安装,Windows 下安装会有很多问题。在安装 face_recognition 之前你需要先安装以下几个库,注意顺序!

1.1 先安装 cmake 和 boost

  1.   pip install cmake
  2.   pip install boost

复制

1.2 安装 dlib

pip install dlib

复制

此处安装可能要几分钟。如安装出错,建议使用 whl 文件来安装 下载地址:https://pypi.org/simple/dlib/

1.3 安装 face_recognition

face_recongnition 一般要配合 opencv 一起使用

  1.   pip install face_recognition
  2.   pip install opencv-python

复制

2. 人脸识别

比如这里总共有三张图片,其中有两张已知,第三张是需要识别的图片

首先获取人脸中的信息

  1.   kobe_image = face_recognition.load_image_file("kobe.jpg") # 已知科比照片
  2.   jordan_image = face_recognition.load_image_file("jordan.jpeg") # 已知乔丹照片
  3.   unknown_image = face_recognition.load_image_file("unkown.jpeg") # 未知照片
  4.    
  5.   kobe_face_encoding = face_recognition.face_encodings(kobe_image)[0]
  6.   jordan_face_encoding = face_recognition.face_encodings(jordan_image)[0]
  7.   unknown_face_encoding = face_recognition.face_encodings(unknown_image)[0]

复制

代码中前三行分别是加载三张图片文件并返回图像的 numpy 数组,后三行返回图像中每个面部的人脸编码

然后将未知图片中的人脸和已知图片中的人脸进行对比,使用 compare_faces() 函数, 代码如下:

  1.   known_faces = [
  2.   kobe_face_encoding,
  3.   jordan_face_encoding
  4.   ]
  5.   results = face_recognition.compare_faces(known_faces, unknown_face_encoding) # 识别结果列表
  6.   print("这张未知照片是科比吗? {}".format(results[0]))
  7.   print("这张未知照片是乔丹吗? {}".format(results[1]))

复制

运行结果如下:

不到二十行代码,就能识别出人脸是谁,是不是 so easy!

3. 人脸标注

仅仅识别图片中的人脸总是感觉差点什么,那么将识别出来的人脸进行姓名标注是不是更加有趣~

已知图片的识别和前面代码基本是一样的,未知图片代码多了人脸位置的识别,并使用了face_locations() 函数。代码如下:

  1.   face_locations = face_recognition.face_locations(unknown_image)
  2.   face_encodings = face_recognition.face_encodings(unknown_image, face_locations)

复制

函数传入两个参数,返回以上,右,下,左固定顺序的脸部位置列表的作用是将已知脸部位置和未知面部编码进行比较,得到欧式距离~~~具体是什么我也不知道,距离就相当于相识度。

函数说明:face_distance(face_encodings, face_to_compare)

face_encodings:已知的面部编码 face_to_compare:要比较的面部编码

本次图片前面两张没有变化,第三张换成了科比和乔丹的合影,最终运行之后结果如下:

左边是原图,右边是识别后自动标注出来的图片。

  1.   import face_recognition
  2.   from PIL import Image, ImageDraw
  3.   import numpy as np
  4.    
  5.    
  6.   def draws():
  7.   kobe_image = face_recognition.load_image_file("kobe.jpg")
  8.   kobe_face_encoding = face_recognition.face_encodings(kobe_image)[0]
  9.    
  10.   jordan_image = face_recognition.load_image_file("jordan.jpeg")
  11.   jordan_face_encoding = face_recognition.face_encodings(jordan_image)[0]
  12.    
  13.   known_face_encodings = [
  14.   kobe_face_encoding,
  15.   jordan_face_encoding
  16.   ]
  17.   known_face_names = [
  18.   "Kobe",
  19.   "Jordan"
  20.   ]
  21.    
  22.   unknown_image = face_recognition.load_image_file("two_people.jpeg")
  23.    
  24.   face_locations = face_recognition.face_locations(unknown_image)
  25.   face_encodings = face_recognition.face_encodings(unknown_image, face_locations)
  26.    
  27.   pil_image = Image.fromarray(unknown_image)
  28.   draw = ImageDraw.Draw(pil_image)
  29.    
  30.   for (top, right, bottom, left), face_encoding in zip(face_locations, face_encodings):
  31.   matches = face_recognition.compare_faces(known_face_encodings, face_encoding)
  32.    
  33.   name = "Unknown"
  34.    
  35.   face_distances = face_recognition.face_distance(known_face_encodings, face_encoding)
  36.   best_match_index = np.argmin(face_distances)
  37.   if matches[best_match_index]:
  38.   name = known_face_names[best_match_index]
  39.    
  40.   draw.rectangle(((left, top), (right, bottom)), outline=(0, 0, 255))
  41.    
  42.   text_width, text_height = draw.textsize(name)
  43.   draw.rectangle(((left, bottom - text_height - 10), (right, bottom)), fill=(0, 0, 255), outline=(0, 0, 255))
  44.   draw.text((left + 6, bottom - text_height - 5), name, fill=(255, 255, 255, 255))
  45.    
  46.   del draw
  47.   pil_image.show()
  48.   pil_image.save("image_with_boxes.jpg")

复制

4. 给人脸美妆

这个功能需要结合 PIL 一起使用。用法都差不多,首先就是将图片文件加载到 numpy 数组中,然后将人脸中的面部所有特征识别到一个列表中

  1.   image = face_recognition.load_image_file("bogute.jpeg")
  2.   face_landmarks_list = face_recognition.face_landmarks(image)

复制

遍历列表中的元素,修改眉毛

  1.   d.polygon(face_landmarks['left_eyebrow'], fill=(68, 54, 39, 128))
  2.   d.polygon(face_landmarks['right_eyebrow'], fill=(68, 54, 39, 128))
  3.   d.line(face_landmarks['left_eyebrow'], fill=(68, 54, 39, 150), width=5)
  4.   d.line(face_landmarks['right_eyebrow'], fill=(68, 54, 39, 150), width=5)

复制

给人脸涂口红

  1.   d.polygon(face_landmarks['top_lip'], fill=(150, 0, 0, 128))
  2.   d.polygon(face_landmarks['bottom_lip'], fill=(150, 0, 0, 128))
  3.   d.line(face_landmarks['top_lip'], fill=(150, 0, 0, 64), width=8)
  4.   d.line(face_landmarks['bottom_lip'], fill=(150, 0, 0, 64), width=8)

复制

增加眼线

  1.   d.polygon(face_landmarks['left_eye'], fill=(255, 255, 255, 30))
  2.   d.polygon(face_landmarks['right_eye'], fill=(255, 255, 255, 30))
  3.   d.line(face_landmarks['left_eye'] + [face_landmarks['left_eye'][0]], fill=(0, 0, 0, 110), width=6)
  4.   d.line(face_landmarks['right_eye'] + [face_landmarks['right_eye'][0]], fill=(0, 0, 0, 110), wid=6)

复制

根据以上代码做了,我用实力不行,打球又脏的 "大嘴" 博格特来做演示!

左边是原图,右边是加了美妆后的效果

 

标签:人脸识别,20,python,image,face,encodings,landmarks,recognition,fill
From: https://www.cnblogs.com/hanbosoft/p/17355224.html

相关文章

  • python 编译成.pyd/.so
    所谓pyd文件,就是D语言(C/C++综合进化版本)编写的一种dll文件,相比起容易被反编译的pyc文件,pyd文件目前还没有办法进行反编译,只能被反汇编,因此有很高的安全性,并且运行效率也比较高。在windows会编译出pyd,linux会编译称.so编译前准备要想编译pyd,首先要通过pip安装Cython和setup......
  • Python-2闭包
    1.闭包:闭包是在嵌套函数中,内函数使用外函数的局部变量,并且返回了内函数。2.特点:延长了局部变量的生命周期,持续到脚本执行结束。3.意义:保护了内部变量,防止像使用全局变量(global)的时候被篡改。nonlocal:是一个关键字用于访问封闭函数作用域中的变量。当内层函数在外层函数中被定......
  • Python通过GPIO从DHT11温度传感器获取数据
    Python通过GPIO从DHT11温度传感器获取数据设备:树莓派4B、DHT11、杜邦线DHT11DHT11是一款有已校准数字信号输出的温湿度传感器。其精度湿度±5%RH,温度±2℃,量程湿度20-90%RH,温度0~50℃。精度不高,但价格低廉。DHT11使用单总线通信。供电电压3.3~5V。线路连接DHT11 树莓......
  • python subprocess Popen非阻塞,读取adb日志
    简单版fromthreadingimportThreadfromqueueimportQueue,Emptyimportshlexif__name__=='__main__':print_hi('PyCharm')#Car().run()defenqueue_output(stdout,queue):withopen("www.log",'w......
  • python安装过程中的问题
    1.用pip安装插件时报Fatalerrorinlauncher:Unabletocreateprocessusing'"D:\ProgramFiles\Python311\python.exe""D:\ProgramFiles\Python311\Scripts\pip.exe"installpyinstaller':???????????解决:1.检查Python安装的路径是否正确。在这种......
  • 一篇文章教会你什么是Python模仿强类型
    今日鸡汤此曲只应天上有,人间难得几回闻。前言   Hi,各位小伙伴,你们好,今天我们来说一个Python未来趋势的并且一个好玩的东西。    我们可能多多少少都听过一句话,动态一时爽,重构火葬场。从生产角度出发,Python确实是一门很优秀的语言,但是当多人协作时,或者接手别人Python代码时,......
  • 力扣 819. 最常见的单词--python
    给定一个段落(paragraph)和一个禁用单词列表(banned)。返回出现次数最多,同时不在禁用列表中的单词。题目保证至少有一个词不在禁用列表中,而且答案唯一。禁用列表中的单词用小写字母表示,不含标点符号。段落中的单词不区分大小写。答案都是小写字母。 示例:输入:paragraph......
  • python 使用selenium 不开启浏览器
    selenium不启动浏览器模式打开浏览器再启动会浪费时间,对爬虫的性能也是个影响,还有一种就是不打开浏览器。如下参数是针对chrome的全局参数,不能自定义参数。fromseleniumimportwebdriver#还有一些其他的参数'''#添加UAoptions.add_argument('user-agent="MQQBrowser/26......
  • Python的socket编程
    目前处在学习python爬虫的阶段,昨天看到了python的socket模块,分别实现TCP、UDP时间戳回显。1、tcp通信server和client代码#tcpServer.py#!/usr/bin/python#-*-coding:utf-8-*-fromsocketimport*fromtimeimportctimeHOST=''PORT=21156BUFSIZE=1024ADD......
  • python open 用法
    函数语法open(file,mode,buffering,encoding,errors,newline,closefd,opener)参数说明:name:一个包含了你要访问的文件名称的字符串值。mode:mode决定了打开文件的模式:只读,写入,追加等。所有可取值见如下的完全列表。这个参数是非强制的,默认文件访问模式为只读......