我在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有任何知识和经验,请帮助...
答案 0 :(得分:2)
您需要执行C:\mydir>dlibProject.exe shape_predictor_68_face_landmarks.dat faces/*.jpg
,因为face_landmark_detection_ex
是您显然已更改的程序的名称。