python3人脸识别的两种方法

作者:小满丫 时间:2021-07-09 23:12:52 

本文实例为大家分享了python3实现人脸识别的具体代码,供大家参考,具体内容如下

第一种:


import cv2
import numpy as np

filename = 'test1.jpg'
path = r'D:\face'

def detect(filename):
 face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
 face_cascade.load(path + '\haarcascade_frontalface_default.xml')

img = cv2.imread(filename)
 gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
 faces = face_cascade.detectMultiScale(gray, 1.3, 5)
 for (x, y, w, h) in faces:
   img = cv2.rectangle(img, (x, y), (x + w, y + h), (255, 0, 0), 2)
 cv2.namedWindow("vikings detected")
 cv2.imshow("vikings detected", img)
 cv2.waitKey(0)

detect(filename)

结果:

python3人脸识别的两种方法

第二种 参考贾志刚opencv教程


# -*- coding:utf-8 -*-
import cv2 as cv
import numpy as np

src = cv.imread('test1.jpg')
path = r'D:\face'

def face_detect_demo():
 gray = cv.cvtColor(src,cv.COLOR_BGR2GRAY)

face_detector = cv.CascadeClassifier('haarcascade_frontalface_default.xml')
 face_detector.load(path + '\haarcascade_frontalface_default.xml')
 faces = face_detector.detectMultiScale(gray,1.3,5)
 for x,y,w,h in faces:
   cv.rectangle(src,(x,y),(x+w,y+h),(0,0,255),2)
 cv.imshow("result",src)

print("--------------python face detect-------------")
cv.namedWindow("input image",0)
cv.namedWindow("result",0)
cv.imshow("input image",src)
face_detect_demo()
cv.waitKey(0)
cv.destroyAllWindows()

结果:

python3人脸识别的两种方法

来源:https://blog.csdn.net/weixin_42512266/article/details/89467643

标签:python,人脸识别
0
投稿

猜你喜欢

  • golang 结构体初始化时赋值格式介绍

    2024-04-26 17:26:11
  • Python实现注册登录功能

    2023-09-07 22:24:50
  • removeChild的障眼法

    2009-12-04 12:49:00
  • 详解mysql中的concat相关函数

    2024-01-16 06:36:22
  • 也谈网页圆角的背景图法

    2009-03-19 14:09:00
  • python的绘图工具matplotlib使用实例

    2023-10-09 13:23:28
  • Python def函数的定义、使用及参数传递实现代码

    2023-02-23 04:54:34
  • 详解python配置虚拟环境

    2021-08-02 22:02:50
  • python实现从网络下载文件并获得文件大小及类型的方法

    2021-05-15 17:53:04
  • 在VSCode中如何配置Python开发环境

    2023-05-13 22:02:59
  • python统计中文字符数量的两种方法

    2022-11-16 00:24:08
  • 微信小程序实现横向滚动导航栏效果

    2024-04-29 13:55:49
  • python实现简单的飞机大战游戏

    2023-08-28 01:50:50
  • 用Dreamweaver MX巧妙格式化表格

    2008-03-18 16:39:00
  • Django中的CBV和FBV示例介绍

    2022-05-23 10:13:59
  • Python3+pycuda实现执行简单GPU计算任务

    2022-06-04 09:55:29
  • Mysql Innodb存储引擎之索引与算法

    2024-01-18 02:09:39
  • ASP连接MySQL数据库的方法

    2010-03-14 11:25:00
  • 部署Python的框架下的web app的详细教程

    2022-06-03 08:20:57
  • XML简易教程之二

    2008-09-05 17:19:00
  • asp之家 网络编程 m.aspxhome.com