基于Dlib库的人脸检测
face_detector = dlib.get_frontal_face_detector() #获取人脸分类器
-
返回值是<class ‘dlib.dlib.rectangle’>,就是一个矩形
坐标为[(x1, y1) (x2, y2)]。
-
详解及代码链接:https://blog.csdn.net/hongbin_xu/article/details/78347484
face_detector = dlib.get_frontal_face_detector() #获取人脸分类器
返回值是<class ‘dlib.dlib.rectangle’>,就是一个矩形
坐标为[(x1, y1) (x2, y2)]。
详解及代码链接:https://blog.csdn.net/hongbin_xu/article/details/78347484