0

我在 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 有任何知识和经验,请帮助...

4

1 回答 1

2

您只需要这样做C:\mydir>dlibProject.exe shape_predictor_68_face_landmarks.dat faces/*.jpg,就像face_landmark_detection_ex您显然更改的程序的名称一样。

于 2016-04-12T11:49:26.150 回答