EduCoder平台:人脸识别系统——Dlib人脸特征提取
第1关:检测人脸特征点
编程要求:
请在右侧编辑器中的BEGIN-END之间编写代码,使用Dlib检测人脸特征点并打印:
-
-
-
-
-
- 使用训练好的能检测68个人脸特征点的模型,检测特征点;
-
- 打印出对应的特征点(打印函数已经默认写好,无需修改)。
代码如下:
import cv2
import dlib
img_path = "step1/image/face.jpg"
img=cv2.imread(img_path)
gray=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
detector = dlib.get_frontal_face_detector()
predictor_path = "data/shape_predictor_68_face_landmarks.dat"
predictor = dlib.shape_predictor(predictor_path)
faces =detector(gray,1)
print("人脸数: ", len(faces))
for i, face in enumerate(faces):
print("第", i+1, "个人脸的矩形框坐标:\n","left:", face.left(), "right:", face.right(), "top:", face.top(), "bottom:", face.bottom())
shape = predictor(img,face)
print("第", i+1, '个人脸的特征点:')
print(shape.parts())
第2关:绘制人脸特征点
编程要求:
请在右侧编辑器中的BEGIN-END之间编写代码,使用OpenCV绘制人脸特征点,并保存图片到指定路径:
代码如下:
import cv2
import dlib
img_path = "step2/image/face.jpg"
img = cv2.imread(img_path)
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
detector = dlib.get_frontal_face_detector()
predictor_path = "data/shape_predictor_68_face_landmarks.dat"
predictor = dlib.shape_predictor(predictor_path)
faces = detector(gray, 1)
for i, face in enumerate(faces):
shape = predictor(img, face)
'''****************BEGIN****************'''
for pt in shape.parts():
pt_pos=(pt.x,pt.y)
cv2.circle(img,pt_pos,1,(0,255,0),2)
'''**************** END ****************'''
cv2.imwrite('step2/out/face.jpg', img)
第3关:训练人脸特征点模型
编程要求:
恭喜你学习完如何训练自己的人脸特征点检测器,请在右侧编辑器中的BEGIN-END之间编写代码,完成一个人脸检测器,并应用到新的图片上:
-
定义模型训练需要的参数, 其中:oversampling_amount 参数设置为100,正则化nu设置为0.05,数的深度 tree_depth 设置为1,be_verbose属性设置为假(False); -
调用训练模型函数; -
调用测试模型函数; -
使用刚才训练完成的人脸特征点检测器进行检查; -
获取每一个人脸区域内的特征点,使用OpenCV绘制特征点, 点的颜色设定为蓝色(0, 0, 255),粗细为3; -
保存图片到指定路径(代码中已经写好路径)。
代码如下:
import os
import sys
import cv2
import dlib
import glob
faces_folder = 'step3/dataSet'
'''****************BEGIN****************'''
options=dlib.shape_predictor_training_options()
'''**************** END ****************'''
'''****************BEGIN****************'''
options.oversampling_amount=100
options.nu=0.05
options.tree_depth=1
options.be_verbose = False
'''**************** END ****************'''
training_xml_path = os.path.join(
faces_folder, "training_with_face_landmarks.xml")
'''****************BEGIN****************'''
dlib.train_shape_predictor(training_xml_path,"predictor.dat",options)
'''**************** END ****************'''
print('模型训练完成')
detector = dlib.get_frontal_face_detector()
'''****************BEGIN****************'''
predictor=dlib.shape_predictor("predictor.dat")
'''**************** END ****************'''
faces_folder = 'step3/image/'
for f in glob.glob(os.path.join(faces_folder, "*.jpg")):
print("处理文件: {}".format(f))
img = dlib.load_rgb_image(f)
dets = detector(img, 1)
print("检测到的人脸个数为: {}".format(len(dets)))
for k, d in enumerate(dets):
print("人脸区域 {}: Left: {} Top: {} Right: {} Bottom: {}".format(k, d.left(), d.top(), d.right(), d.bottom()))
shape = predictor(img, d)
for pt in shape.parts():
pt_pos = (pt.x, pt.y)
'''****************BEGIN****************'''
cv2.circle(img,pt_pos,2,(0,0,255),3)
'''**************** END ****************'''
save_path = 'step3/out/face-landmark.jpg'
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
'''****************BEGIN****************'''
cv2.imwrite(save_path,img)
'''**************** END ****************'''
if os.path.exists(save_path):
print('保存检测后图片成功')
|