不能在dlib cpp文件中包含JPEG_SUPPORT标头

时间:2017-03-25 15:06:31

标签: c++ c++11 jpeg header-files dlib

我正在尝试编译一个cpp文件:dlib中的face-finder:http://dlib.net/face_detection_ex.cpp.html。但当我运行它时,它说我必须包含jpg和png文件的库:

processing image /home/james/Work/Coding/Sources/Image/950.jpg

exception thrown!
Unable to load image in file /home/dave/Code/Resources/Images/500.jpg.
You must #define DLIB_JPEG_SUPPORT and link to libjpeg to read JPEG files.
Do this by following the instructions at http://dlib.net/compile.html.

Note that you must cause DLIB_JPEG_SUPPORT to be defined for your entire project.
So don't #define it in one file. Instead, use a compiler switch like -DDLIB_JPEG_SUPPORT
so it takes effect for your entire application.

我尝试使用-DDLIB_JPEG_SUPPORT标志,但失败了,所以我决定在文件中定义它们:

*/

#define DLIB_JPEG_SUPPORT
#define DLIB_PNG_SUPPORT

#include </home/james/dlib/image_io.h>
#include </home/james/dlib/image_processing/frontal_face_detector.h>
#include </home/james/dlib/gui_widgets.h>
#include </home/james/dlib/image_io.h>
#include <iostream>

using namespace dlib;
using namespace std;

// ----------------------------------------------------------------------------------------

int main(int argc, char** argv)

但无法编译:

james@james-Toshiba-Satellite-8505:~/Work/Coding/Cpp/Dlib/Examples$ g++ -std=c++11 -O3 -I.. ~/dlib/all/source.cpp -lpthread -lX11 face_detection_ex.cpp -o face_detection_ex_2/tmp/ccVHitZj.o: In function `main':
face_detection_ex.cpp:(.text.startup+0x1c0d): undefined reference to `dlib::jpeg_loader::jpeg_loader(std::string const&)'
face_detection_ex.cpp:(.text.startup+0x1d0a): undefined reference to `dlib::jpeg_loader::is_gray() const'
face_detection_ex.cpp:(.text.startup+0x1e3b): undefined reference to `dlib::png_loader::png_loader(std::string const&)'
face_detection_ex.cpp:(.text.startup+0x1f04): undefined reference to `dlib::png_loader::is_gray() const'
face_detection_ex.cpp:(.text.startup+0x1f23): undefined reference to `dlib::png_loader::is_gray() const'
face_detection_ex.cpp:(.text.startup+0x1f38): undefined reference to `dlib::png_loader::is_graya() const'
face_detection_ex.cpp:(.text.startup+0x1f59): undefined reference to `dlib::png_loader::is_graya() const'
face_detection_ex.cpp:(.text.startup+0x1f6e): undefined reference to `dlib::png_loader::is_rgb() const'
face_detection_ex.cpp:(.text.startup+0x1f83): undefined reference to `dlib::png_loader::is_rgb() const'
face_detection_ex.cpp:(.text.startup+0x1f98): undefined reference to `dlib::png_loader::is_rgba() const'
face_detection_ex.cpp:(.text.startup+0x1fad): undefined reference to `dlib::png_loader::is_rgba() const'
face_detection_ex.cpp:(.text.startup+0x2009): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x20b6): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x211c): undefined reference to `dlib::png_loader::~png_loader()'
face_detection_ex.cpp:(.text.startup+0x229a): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x2587): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x2ea7): undefined reference to `dlib::png_loader::~png_loader()'
face_detection_ex.cpp:(.text.startup+0x2fe9): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x30ac): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x313c): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
face_detection_ex.cpp:(.text.startup+0x31c4): undefined reference to `dlib::png_loader::get_row(unsigned int) const'
collect2: error: ld returned 1 exit status

1 个答案:

答案 0 :(得分:4)

请在询问问题之前阅读编译器和工具向您显示的错误和建议消息。

  

关于:异常抛出!无法在文件中加载图像   /home/dave/Code/Resources/Images/500.jpg。你必须#define   DLIB_JPEG_SUPPORT并链接到libjpeg以读取JPEG文件。这样做   按照http://dlib.net/compile.html的说明进行操作。

安装libjpeg,libpng等库并在编译时使用它们来链接程序。请阅读建议页面http://dlib.net/compile.html

在编译之前,如果您有多个源代码文件,请从代码中删除预处理程序指令。

#define DLIB_JPEG_SUPPORT
#define DLIB_PNG_SUPPORT

并使用建议的交换机编译器:-DDLIB_JPEG_SUPPORT。

  

请注意,您必须为您的身份定义DLIB_JPEG_SUPPORT   整个项目。所以不要在一个文件中定义#define。相反,使用   编译器开关像-DDLIB_JPEG_SUPPORT,所以它对你的生效   整个申请。

所以,使用这样的命令来编译:

  

g ++ face_detection_ex.cpp -o face_detection_ex_2 -std = c ++ 11 -O3 -I ..   〜/ dlib / all / source.cpp -lpthread -lX11 -ljpeg -lpng -DDLIB_JPEG_SUPPORT   -DDLIB_PNG_SUPPORT

假设已经安装了库(libjpeg和libpng)。