2

是否可以使用train_shape_predictor_ex.cpp.htmlface_landmark_detection_ex.cpp.html来训练不同的地标数字?默认情况下,两者都检测68正面中的地标。我只想检测39地标。我可以使用train_shape_predictor_ex. 但是face_landmark_detection_ex输出附加的消息:

抛出异常

Error detected at line 25. 
Error detected in file /Users/Vareto/Documents/Dlib/dlib/../dlib/image_processing/render_face_detections.h.
Error detected in function std::vector dlib::render_face_detections(const std::vector &, const dlib::rgb_pixel).
Failing expression was dets[i].num_parts() == 68.
std::vector render_face_detections()
Invalid inputs were given to this function.
dets[0].num_parts(): 39
4

1 回答 1

2

就错误消息而言,这一消息非常清楚。

这就是说,虽然你有39标记(恭喜你训练它!),但演示仍在尝试绘制68函数render_face_detections()

39 != 68
于 2016-04-04T20:01:35.937 回答