人脸检测,关键点识别,人脸对齐

import cv2
import dlib
import numpy as np
import math
PREDICTOR_PATH = "E:/Testcomptition/shape_predictor_68_face_landmarks.dat"
predictor = dlib.shape_predictor(PREDICTOR_PATH)  # 用来预测关键点
detector = dlib.get_frontal_face_detector()
class FaceDetector:def resize(self,image, width=1200):  # 将待检测的image进行resizer = width * 1.0 / image.shape[1]dim = (width, int(image.shape[0] * r))resized = cv2.resize(image, dim, interpolation=cv2.INTER_AREA)return resizeddef detect(self, image):# image = self.resize(image, width=1200)detector = dlib.get_frontal_face_detector()gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)rects = detector(gray, 1)# return the rectangles representing boundinb# boxes around the facesreturn rectsdef rect_to_bb(self,rect):  # 获得人脸矩形的坐标信息x = rect.left()y = rect.top()w = rect.right() - xh = rect.bottom() - yreturn (x, y, w, h)def render(self,frame,rect):rects = self.detect(frame)for (i, rect) in enumerate(rects):(x, y, w, h) = self.rect_to_bb(rect)cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)cv2.putText(frame, "Face", (x + 10, y + 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 2)return frameclass FaceAligner:def detect(self, image):# image = self.resize(image, width=1200)detector = dlib.get_frontal_face_detector()gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)rects = detector(gray, 1)# return the rectangles representing boundinb# boxes around the facesreturn rectsdef rect_to_bb(self,rect):  # 获得人脸矩形的坐标信息x = rect.left()y = rect.top()w = rect.right() - xh = rect.bottom() - yreturn (x, y, w, h)def resize(self,image, width=1200):  # 将待检测的image进行resizer = width * 1.0 / image.shape[1]dim = (width, int(image.shape[0] * r))resized = cv2.resize(image, dim, interpolation=cv2.INTER_AREA)return resizeddef shape_to_np(shape, dtype="int"):  # 将包含68个特征的的shape转换为numpy array格式coords = np.zeros((68, 2), dtype=dtype)for i in range(0, 68):coords[i] = (shape.part(i).x, shape.part(i).y)return coordsdef rect_to_bb(self,rect):  # 获得人脸矩形的坐标信息x = rect.left()y = rect.top()w = rect.right() - xh = rect.bottom() - yreturn (x, y, w, h)def face_alignment(faces):PREDICTOR_PATH = "E:/Testcomptition/shape_predictor_68_face_landmarks.dat"predictor = dlib.shape_predictor(PREDICTOR_PATH)  # 用来预测关键点faces_aligned = []for face in faces:rec = dlib.rectangle(0, 0, face.shape[0], face.shape[1])shape = predictor(np.uint8(face), rec)  # 注意输入的必须是uint8类型order = [36, 45, 30, 48, 54]  # left eye, right eye, nose, left mouth, right mouth  注意关键点的顺序,这个在网上可以找for j in order:x = shape.part(j).xy = shape.part(j).ycv2.circle(face, (x, y), 2, (0, 0, 255), -1)eye_center = ((shape.part(36).x + shape.part(45).x) * 1. / 2,  # 计算两眼的中心坐标(shape.part(36).y + shape.part(45).y) * 1. / 2)dx = (shape.part(45).x - shape.part(36).x)  # note: right - rightdy = (shape.part(45).y - shape.part(36).y)angle = math.atan2(dy, dx) * 180. / math.pi  # 计算角度RotateMatrix = cv2.getRotationMatrix2D(eye_center, angle, scale=1)  # 计算仿射矩阵RotImg = cv2.warpAffine(face, RotateMatrix, (face.shape[0], face.shape[1]))  # 进行放射变换,即旋转faces_aligned.append(RotImg)return faces_aligneddef align(self,frame,rects):#函数功能:检测人脸的关键点#参数: frame(array) – 输入图像#rect(list) – 图像中人脸的坐标(左上角和右下角的坐标)#返回(n*2 list):检测到人脸的关键点坐标,是一个 n*2 的数组,n为检测# #到的关键点数量,每个元素代表了一个关键点的坐标gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)# rects = detector(gray, 1)shapes = []for (i, rect) in enumerate(rects):shape = predictor(gray, rect)coords = np.zeros((68, 2), dtype="int")for i in range(0, 68):coords[i] = (shape.part(i).x, shape.part(i).y)shape = coords# print(len(shape))# print(shape)shapes.append(shape)return shapesdef crop_face(self,frame, points):# 函数功能:在原始图片中把人脸截取出来,并经过旋转缩放使得脸部角度正确# 得到一个 178*218 的图片# 参数:frame(array) – 原始图像# points(n*2 list) – 一个人脸的关键点坐标# 返回(array):经过裁剪、旋转、缩放后得到的脸部图片rects=self.detect(frame)src_faces = []for (i, rect) in enumerate(rects):(x, y, w, h) = self.rect_to_bb(rect)detect_face = frame[y:y + h, x:x + w]  # 根据rect裁减出# cv2.imshow("detect_face", detect_face)src_faces.append(detect_face)# cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)# cv2.putText(frame, "Face: {}".format(i + 1), (x - 10, y - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0),#             2)PREDICTOR_PATH = "E:/Testcomptition/shape_predictor_68_face_landmarks.dat"predictor = dlib.shape_predictor(PREDICTOR_PATH)  # 用来预测关键点faces_aligned = []for face in src_faces:rec = dlib.rectangle(0, 0, face.shape[0], face.shape[1])shape = predictor(np.uint8(face), rec)  # 注意输入的必须是uint8类型order = [36, 45, 30, 48, 54]  # left eye, right eye, nose, left mouth, right mouth  注意关键点的顺序,这个在网上可以找for j in order:x = shape.part(j).xy = shape.part(j).y# cv2.circle(face, (x, y), 2, (0, 0, 255), -1)eye_center = ((shape.part(36).x + shape.part(45).x) * 1. / 2,  # 计算两眼的中心坐标(shape.part(36).y + shape.part(45).y) * 1. / 2)dx = (shape.part(45).x - shape.part(36).x)  # note: right - rightdy = (shape.part(45).y - shape.part(36).y)angle = math.atan2(dy, dx) * 180. / math.pi  # 计算角度RotateMatrix = cv2.getRotationMatrix2D(eye_center, angle, scale=1)  # 计算仿射矩阵RotImg = cv2.warpAffine(face, RotateMatrix, (face.shape[0], face.shape[1]))  # 进行放射变换,即旋转faces_aligned.append(RotImg)# for face in faces_aligned:#     cv2.imshow("align_face_{}".format(i), face)#     i = i + 1# cv2.waitKey(0)return faces_aligneddef render(self,frame, points):# 函数功能:在原始图片中把人脸的关键点标上红点# 参数: frame(array) – 原始图像# points(n*2 list) – 一个人脸的关键点坐标# 返回(array)::把人脸的关键点标上红点之后的图像for shape in points:for (x, y) in shape:cv2.circle(frame, (x, y), 2, (0, 255, 0), -1)return frame
import testfacedetectok
if __name__ == '__main__':image_file = 'E:/Testcomptition/subject/competition_2/exam3/tests/103011.jpg'frame = cv2.imread(image_file)rects = FaceDetector().detect(frame)print("rects",rects)detect_face = FaceDetector().render(frame, rects)cv2.imshow("detect_face",detect_face)frame1 = cv2.imread(image_file)face_aligner=FaceAligner()key_points = face_aligner.align(frame1, rects)# print(key_points)crop_frames = face_aligner.crop_face(frame1, key_points)points_frame = face_aligner.render(frame1, key_points)print(crop_frames)i = 0for face in crop_frames:cv2.imshow("det_{}".format(i), face)i = i + 1cv2.imshow("crop_face", points_frame)# 等待“q”按下,关闭窗口cv2.waitKey(0)

参考自:【Dlib】人脸检测、特征点检测、人脸对齐、人脸识别_夏洛的网的博客-CSDN博客_人脸检测 人脸对齐 特征提取

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/567363.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python与数据处理_python数据处理:数据合并和Reshaping

本文资料来自于: Python for Data Analysis: Chapter5, 7, 12 文中实例查看地址:http://nbviewer.jupyter.org/github/RZAmber/for_blog/blob/master/learn_numpy.ipynb 1. Combing and Merging Data Sets 在pandas中,数据可以通过三种方式进…

使用详解_Log4j2使用详解

日志框架简单比较(slf4j、j.u.l、log4j、logback、log4j2 )slf4j:slf4j是对所有日志框架制定的一种规范、标准、接口,并不是一个框架的具体的实现,因为接口并不能独立使用,需要和具体的日志框架实现配合使用…

paddlehub安装及对口罩检测

1、安装 python -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple pip install -i https://mirror.baidu.com/pypi/simple paddlehub 报错,解决方案: >pip install -i https://mirror.baidu.com/pypi/simple paddlehub --use…

python实例变量不存在_python – peewee实例匹配查询不存在

我有以下代码,我在查询我的peewee数据库.我在具有term.sets_term_id的行上的for循环中收到错误.这是错误TermsDoesNotExist:实例匹配查询不存在:如果我执行变量(term),则sets_terms_id是一个选项.为什么我会收到该错误以及如何解决? def get_…

语言专项精讲课程 赵海英_最全汇总:沪江日语课程体系指南

沪江日语课程可分为六大类,你可以根据自己的学习意愿快速定位。当然,也有课程涉及多个分类,请仔细查看一下不同课程的偏重,选择适合自己的课程。一、零基础直达 0-N1签约名师:同类课程人气王 签约课程;19节…

学习opencv3_如何高效学习计算机视觉?

计算机视觉是人工智能的一个热门方向,很多人想要入门,但是却找不到方向。对于初学者来说,最快的入门方法是边实践边学习,也就是要掌握计算机视觉的开发工具。但其实对初学者来说并不太友好,主要有几个原因:…

常用网站网址

unix时间戳工具:Unix时间戳(Unix timestamp)转换工具 - 站长工具 js在线编辑工具:HTML/CSS/JS 在线工具 | 菜鸟工具 代码编辑器:Playground - LeetCode github搜索链接:https://github.com 画图工具:Flowchart Mak…

ora-03113 访问某条记录_用了Excel十几年,你居然不知道“记录单”?!可能错过一个亿……...

点击蓝字发送【2020】免费领 100图表模板!本文作者:竺兰本文审核:小爽本文编辑:竺兰作为一个 Excel 数据搬运工,我每天的工作就是不断地往表格中输入数据,苦恼啊。但同样作为一个「懂点 Excel」的我&#x…

python三维数组切片_【NumPy学习指南】day4 多维数组的切片和索引

ndarray支持在多维数组上的切片操作。为了方便起见,我们可以用一个省略号(...)来 表示遍历剩下的维度。 (1)举例来说,我们先用arange函数创建一个数组并改变其维度,使之变成一个三维数组&#x…

操作系统查看文章链接

x86讲解:80X86寄存器详解 - aitao - 博客园 计算机如何启动:计算机是如何启动的? - 阮一峰的网络日志 linux实验:精选项目课程_IT热门课程_蓝桥云课课程 - 蓝桥云课操作系统原理与实践_Linux - 蓝桥云课

批量修改栏目名_Endnote中英文混排批量修改小技巧

来源:卓琳 赵一鸣 北医三院 临床流行病学和循证医学 如果参考文献量大,涉及多种类型和语言,手工附上参考文献非常低效,还是得借助文献管理软件。由于output style选择的不同,中文参考文献的书写格式有误,有…

python列表导出_python list格式数据excel导出方法

如下所示: # _*_ coding:utf-8 _*_ #----------------------------------------------- # import modules #----------------------------------------------- import os import xlwt import sys import types def set_style(name, height, bold False): style xl…

shiro 方法级别细粒度权限控制_Shiro的认证和权限控制

从类别上分,有两大类:- 认证:你是谁?–识别用户身份。- 授权:你能做什么?–限制用户使用的功能。权限的控制级别从控制级别(模型)上分:- URL级别-粗粒度- 方法级别-细粒度- 页面级别-自定义标签…

python运行外部程序_在Python中运行外部程序(可执行文件)?

在Python中运行外部程序(可执行文件)? 我刚刚开始研究Python,我一直在尝试从Python运行外部可执行文件。 我有一个用Fortran编写的程序的可执行文件。 假设可执行文件的名称是flow.exe。 我的可执行文件位于C:\Documents and Sett…

word里画的流程图怎么全选_怎么用word画流程图

word是我们最常用的文档编辑软件了,他除了可以制作文字图片的编辑之外,其实它还可以轻松制作出一些简单的流程图,那么又是如何操作的呢?让我们一起看下去吧!一、word画流程图虽说word不是专门使用来画流程图的&#xf…

python中值滤波去除椒盐噪声_Python实现图像去噪方式(中值去噪和均值去噪)

实现对图像进行简单的高斯去噪和椒盐去噪。 代码如下: import numpy as np from PIL import Image import matplotlib.pyplot as plt import random import scipy.misc import scipy.signal import scipy.ndimage from matplotlib.font_manager import FontProperti…

二次扩增产物条带弥散_PCR实验操作常见解决方法

1. cDNA产量的很低可能的原因:*RNA模板质量低*对mRNA浓度估计过高*反应体系中存在反转录酶抑制剂或反转录酶量不足*同位素磷32过期*反应体积过大,不应超过50μl2. 扩增产物在电泳分析时没有条带或条带很浅*常见的原因在于您的反应体系是PCR的反应体系而不…

java 关注公众号没有调接口_深入理解Java继承、封装、多态的实现原理

点击关注上方“Java技术江湖”,设为“置顶或星标”,第一时间送达技术干货。作者:黄小斜文章来源:微信公众号【Java技术江湖】目录从JVM结构开始谈多态JVM 的结构Java 的方法调用方式常量池(constant pool)图 2. 常量池各表的关系方…

wordpress友联_Wordpress 友情链接页面终极版 – Fatesinger

之前写过一篇带头像的友情链接页面,当时有朋友说怎么能支持分类,我让他仿照以前不带头像的旧方法修改下,以前旧方法是用SQL语句获取的分类,其实完全可以通过Wordpress 自带的函数来实现,原因你懂的。而且还有一部分朋友…

系统相机裁剪比例_如何正确设置相机:6个最常见的错误,你还在犯错吗?

你是否在摄影中出现这样的设置错误?查看相机的这6个设置,并按照以下自定义提示操作,以增强照片质量并提高专业摄影水平。1.白平衡绝大多数照片是在自动白平衡模式下拍摄的。这是一个简单的选择,在大多数情况下是合理的,但这不是1…