我按照[Visual Studio中编译dlib的演示] [2]中的描述在Visual Studio中编译了dlib库和face_landmark_detection_ex.cpp示例程序,并成功构建并创建了可执行文件。但是当我尝试以如下方式在终端上执行可执行文件时:
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有任何知识和经验,请帮助...
最佳答案
您只需执行C:\mydir>dlibProject.exe shape_predictor_68_face_landmarks.dat faces/*.jpg
,因为face_landmark_detection_ex
是您显然已更改的程序的名称。
关于c++ - dlib:无法打开face_landmark_detection_ex进行阅读?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36571399/