Dlib 中用于人脸检测的编译问题

Compiling issue in Dlib for face detection

我刚开始尝试 dlib 库。我已经完成了编译说明,但问题仍然存在。 我正在使用命令行进行编译和执行。 我使用了以下命令并给了我错误。

g++ -O3 -I.. ../dlib/all/source.cpp -lpthread -lX11 face_detection_ex.cpp -DDLIB_JPEG_SUPPORT

error log

谢谢

您没有link libjpeg。此处的说明 http://dlib.net/compile.html 告诉您要将 g++ link 转换为 libjpeg 需要键入什么。这是 -ljpeg.