dlib:无法打开face_landmark_detection_ex进行阅读?

时间:2016-04-12 11:03:59

标签: c++ visual-studio dlib

我在visual studio中编译了dlib库和face_landmark_detection_ex.cpp示例程序,如[在Visual Studio中编译dlib的演示] [2]中描述的那样,它已成功构建并创建了可执行文件。但是当我尝试在终端上执行可执行文件时:

C:\mydir>dlibProject.exe face_landmark_detection_ex shape_predictor_68_face_landmarks.dat faces/*.jpg

显示错误:

exception thrown!
Unable to open ./face_landmark_detection_ex for reading.

如果有人对dlib有任何知识和经验,请帮助...

1 个答案:

答案 0 :(得分:2)

您需要执行C:\mydir>dlibProject.exe shape_predictor_68_face_landmarks.dat faces/*.jpg,因为face_landmark_detection_ex是您显然已更改的程序的名称。