Python+dlib检测人脸、脸颊及前额区域

最近在做人脸相关课题,找个地方保存一下部分代码。

用的dlib是81个关键点,GitHub网址:https://github.com/codeniko/shape_predictor_81_face_landmarks

#读取视频,检测一帧中的人脸,并在图像中标出关键点,同时打印出关键点的坐标。
import dlib
import numpy as np
import cv2
from matplotlib import pyplot as plt

cap = cv2.VideoCapture('视频路径')

predictor_path = "shape_predictor_81_face_landmarks.dat的路径"

detector = dlib.get_frontal_face_detector()
predictor = dlib.shape_predictor(predictor_path)

while(True):
    ret, frame = cap.read()
    # 取灰度
    img_gray = cv2.cvtColor(frame, cv2.COLOR_RGB2GRAY)
    # 人脸数rects
    rects = detector(img_gray, 0)
    for i in range(len(rects)):
        landmarks = np.matrix([[p.x, p.y] for p in predictor(frame, rects[i]).parts()])
        for idx, point in enumerate(landmarks):
            # 81点的坐标
            pos = 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值