[python][deepface][原创]使用deepface进行人脸检测

Posted FL1623863129

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python][deepface][原创]使用deepface进行人脸检测相关的知识,希望对你有一定的参考价值。

import cv2
import os
from deepface.detectors import FaceDetector

detector_backend = 'opencv'
face_detector = FaceDetector.build_model(detector_backend)
cap = cv2.VideoCapture(0)  # webcam
while True:
    ret, img = cap.read()
    if img is None:
        break
    try:
        # faces store list of detected_face and region pair
        faces = FaceDetector.detect_faces(face_detector, detector_backend, img, align=False)
    except:  # to avoid exception if no face detected
        faces = []
    for face, (x, y, w, h) in faces:
        if w > 130:  # discard small detected faces
            cv2.rectangle(img, (x, y), (x + w, y + h), (255, 0, 0), 3)  # draw rectangle to main image
    cv2.imshow('result', img)
    if cv2.waitKey(1) & 0xFF == ord('q'):  # press q to quit
        break
# kill open cv things
cap.release()
cv2.destroyAllWindows()

以上是关于[python][deepface][原创]使用deepface进行人脸检测的主要内容,如果未能解决你的问题,请参考以下文章

[python][deepface][原创]使用deepface进行性别预测

[python][deepface][原创]使用deepface进行表情识别

[python][deepface][原创]使用deepface进行人脸检测

ModuleNotFoundError:没有名为“deepface”的模块

如何使用 DeepFace.detectFace() 实际检测图像中的多个人脸?

DeepFace 用于提取图像的矢量信息