通常我会识别带有dlib的面部,并使用代码裁剪面部:
face_detector = dlib.get_frontal_face_detector()
detected_faces = face_detector(image,1) face_frames = [(x.left(),x.top(),x.right(),x.bottom())for x in detected_faces]
返回face_frames
似乎只是用dlib识别脸部,但如何在图片中对齐脸部?
我在https://github.com/deepfakes/faceswap中看到了代码,需要复杂的计算。
那么如何使用简单的方法对脸部进行分类并进行裁剪?