实例详解Python人脸识别


本文摘自php中文网,作者小云云,侵删。

最近iPhone X博人眼球,其中最绝妙的设计就是人脸识别解锁,本文主要为大家详细介绍了Python人脸识别初探的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。

1.利用opencv库

1

2

3

sudo apt-get install libopencv-*

sudo apt-get install python-opencv

sudo apt-get install python-numpy

2 .Python实现

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

import os

import os

from PIL import Image,ImageDraw

import cv

 

def detect_object(image):

  grayscale = cv.CreateImage((image.width,image.height),8,1)#创建空的灰度值图片

  cv.CvtColor(image,grayscale,cv.CV_BGR2GRAY)

  cascade=cv.Load("/usr/share/opencv/haarcascades/haarcascade_frontalface_alt_tree.xml")#记载特征值库,此目录下还有好多库可以选用

  rect=cv.HaarDetectObjects(grayscale,cascade,cv.CreateMemStorage(),1.1,2,cv.CV_HAAR_DO_CANNY_PRUNING,(20,20))

  result=[]#标记位置

  for r in rect:

    result.append((r[0][0],r[0][1],r[0][0]+r[0][2],r[0][1]+r[0][3]))

  return result

 

def process(infile):

  image = cv.LoadImage(infile)

  if image:

    faces = detect_object(image)

  im = Image.open(infile)

  path = os.path.abspath(infile)

  save_path = os.path.splitext(path)[0]+"_face"

  try:

    os.mkdir(save_path)

  except:

    pass

  if faces:

    draw = ImageDraw.Draw(im)

    count=0

    for f in faces:

       count+=1

       draw.rectangle(f,outline=(255,0,0))

       a=im.crop(f)

       file_name=os.path.join(save_path,str(count)+".jpg")

       a.save(file_name)

    drow_save_path = os.path.join(save_path,"out.jpg")

    im.save(drow_save_path,"JPEG",quality=80)

  else:

    print "Error: cannot detect faces on %s" % infile

if __name__ == "__main__":

   process("test3.jpg")

3.效果对比

4.参考资料

python使用opencv进行人脸识别

Python+OpenCV人脸检测原理及示例详解

python利用OpenCV2实现人脸检测

相关推荐:

AI中Python 的人脸识别

基于HTML5 的人脸识别活体认证的实现方法

求微信开发人脸识别源码,详细

以上就是实例详解Python人脸识别的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

Python中socket实现tcp通信的介绍(附示例)

Python 实用函数进阶(更新中)

Python缩进是强制的吗

Python的numpy库中将矩阵转换为列表等函数的方法_Python

Python pyqt4实现qq抽屉效果

Python多进程的用法示例(代码)

Python中关于上下文管理器的详解

Python实现翻译软件

win10怎么下载Python并安装

Python学习之观察者模式

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...