在人脸检测与人脸识别库中dlib库所谓是非常好的了。检测效果非常ok,下面我们来了解一下这个神奇的库吧!
第一步我们首先学会安装:dlib ,winds+pytho3.6.5 Windows不支持pip在线安装,所以我们直接下载whl文件在使用pip安装就可以了。dlib安装连接,主要注意的是cmake的安装,在Windows使用必须安装cmake进行编译,因为dlib源码是c写的。dlib进行关键点提取和人脸识别的模型见连接,下面来两个小案例把:
简单人脸检测:
import dlib
import cv2
detector = dlib.get_frontal_face_detector()
img = cv2.imread("./img/img_bjn.jpg")
faces = detector(img, 1)
print("人脸数 / Faces in all: ", len(faces))
for i, d in enumerate(faces):
print("第", i+1, "个人脸的矩形框坐标:",
"left:", d.left(), "right:", d.right(), "top:", d.top(), "bottom:", d.bottom())
cv2.rectangle(img, tuple([d.left(), d.top()]), tuple([d.right(), d.bottom()]), (0, 255, 255), 2)
cv2.namedWindow("img", 2)
cv2.imshow("img", img)
cv2.waitKey(0)
特征检测:
import dlib
from skimage import io
import cv2
detector = dlib.get_frontal_face_detector()
predictor = dlib.shape_predictor("./model/shape_predictor_68_face_landmarks.dat")
img = io.imread("./img/sn.jpg")
img = cv2.resize(img,(1000,600))
win = dlib.image_window()
win.set_image(img)
faces = detector(img,1)
print("人脸数:", len(faces),[im for im in faces])
for i, d in enumerate(faces):
print("第", i+1, "个人脸的矩形框坐标:",
"left:", d.left(), "right:", d.right(), "top:", d.top(), "bottom:", d.bottom())
# 使用predictor来计算面部轮廓
shapes = predictor(img, faces\[i\])
# print(\[i for i in shapes\])
# 绘制面部轮廓
win.add\_overlay(shapes)
win.add_overlay(faces)
dlib.hit_enter_to_continue()
手机扫一扫
移动阅读更方便
你可能感兴趣的文章