我目前正在face_landmark_detection.py
上尝试Dlib的示例代码。从示例代码中,我可以看到它生成了脸部界标,并能够将其显示为直线连接,如示例中所示
for k, d in enumerate(dets):
print("Detection {}: Left: {} Top: {} Right: {} Bottom: {}".format(
k, d.left(), d.top(), d.right(), d.bottom()))
# Get the landmarks/parts for the face in box d.
shape = predictor(img, d)
print("Part 0: {}, Part 1: {} ...".format(shape.part(0),
shape.part(1)))
# Draw the face landmarks on the screen.
win.add_overlay(shape)
我正在尝试提取它在叠加层上生成的轮廓并将其创建为另一个图像文件。有人知道我可以提取它吗?