dlib.get_frontal_face_detector()人脸检测

detector = dlib.get_frontal_face_detector()
#功能:人脸检测画框
#参数:无
#返回值:默认的人脸检测器

faces = detector(img_gray, 0)
功能:对图像画人脸框
参数:img_gray:输入的图片
返回值:人脸检测矩形框4点坐标

你可能感兴趣的:(人脸检测,dlib)