1、dlib及opencv的安装
1.1、安装dlib
????1、首先查看自己的python是什么版本的使用命令python -V 。
????2、找到该版本对应的dlib版本,进行安装,我的python是3.9版本的,所以对应的dlib是19.22的。
????使用命令进行pip install dlib-19.22.99-cp39-cp39-win_amd64.whl 安装。
1.2、安装opencv
????1、同样需要与自己的python版本相对应,否则安装不成功。
????使用命令 pip install opencv_python?3.4.14.51?cp39?cp39m?win_amd64.whl 进行安装。
2、进行人脸特征的提取并绘制输出
????1、首先导入代码需要用到的包
import numpy as np
import cv2
import dlib
import os
import sys
import random
????2、添加函数,获得默认的人脸检测器和训练好的68特征点检测器
def get_detector_and_predicyor():
detector = dlib.get_frontal_face_detector()
"""
功能:人脸检测画框
参数:PythonFunction和in Classes
in classes表示采样次数,次数越多获取的人脸的次数越多,但更容易框错
返回值是矩形的坐标,每个矩形为一个人脸(默认的人脸检测器)
"""
predictor = dlib.shape_predictor('..\\source\\shape_predictor_68_face_landmarks.dat')
return detector,predictor
detector,predictor=get_detector_and_predicyor()
????3、添加给眼睛画圆的函数,这个就是找到眼睛周围的特征点,然后确认中心点,后面用cirecle函数画出来就行了
def painting_sunglasses(img,detector,predictor):
rects = detector(img_gray, 0)
for i in range(len(rects)):
landmarks = np.matrix([[p.x, p.y] for p in predictor(img,rects[i]).parts()])
right_eye_x=0
right_eye_y=0
left_eye_x=0
left_eye_y=0
for i in range(36,42):
right_eye_x+=landmarks[i][0,0]
right_eye_y+=landmarks[i][0,1]
pos_right=(int(right_eye_x/6),int(right_eye_y/6))
"""
利用circle函数画圆
函数原型
cv2.circle(img, center, radius, color[, thickness[, lineType[, shift]]])
img:输入的图片data
center:圆心位置
radius:圆的半径
color:圆的颜色
thickness:圆形轮廓的粗细(如果为正)。负厚度表示要绘制实心圆。
lineType: 圆边界的类型。
shift:中心坐标和半径值中的小数位数。
"""
cv2.circle(img=img, center=pos_right, radius=30, color=(0,0,0),thickness=-1)
for i in range(42,48):
left_eye_x+=landmarks[i][0,0]
left_eye_y+=landmarks[i][0,1]
pos_left=(int(left_eye_x/6),int(left_eye_y/6))
cv2.circle(img=img, center=pos_left, radius=30, color=(0,0,0),thickness=-1)
????4、最后调用画圆的函数
camera = cv2.VideoCapture(0)
ok=True
while ok:
ok,img = camera.read()
img_gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
painting_sunglasses(img,detector,predictor)
cv2.imshow('video', img)
k = cv2.waitKey(1)
if k == 27:
break
camera.release()
cv2.destroyAllWindows()
????5、之后运行代码得到的结果
参考: https://blog.csdn.net/junseven164/article/details/121054134?spm=1001.2014.3001.5501 https://blog.csdn.net/weixin_56102526/article/details/121119472?spm=1001.2014.3001.5501
|