0

我正在尝试让 opencv2 代码在我的 Ubuntu 12.04 上运行。似乎库已正确安装。

这是我试图开始工作的示例代码

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>

using namespace cv;

int main(int argc, char ** argv)
{
    // Read image and write to matrix - here converted to grayimage by "0"
    Mat myimage = imread ( argv[1], 0 );

    // Show it in a window
    imshow ( "MyWindowTitle", myimage);

    // Wait for a keypress ( for x [ms], 0 means infinity )
    waitKey(0);
}

我将此代码编译为:

g++ -o sample `pkg-config --cflags --libs opencv` sample.cpp

但是我收到以下编译器错误:

/tmp/cccMPtyu.o: In function `main':
imshow.cpp:(.text+0x59): undefined reference to `cv::imread(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
imshow.cpp:(.text+0x92): undefined reference to `cv::_InputArray::_InputArray(cv::Mat const&)'
imshow.cpp:(.text+0xc9): undefined reference to `cv::imshow(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, cv::_InputArray const&)'
imshow.cpp:(.text+0xeb): undefined reference to `cv::waitKey(int)'
/tmp/cccMPtyu.o: In function `cv::Mat::~Mat()':
imshow.cpp:(.text._ZN2cv3MatD2Ev[_ZN2cv3MatD5Ev]+0x2b): undefined reference to `cv::fastFree(void*)'
/tmp/cccMPtyu.o: In function `cv::Mat::release()':
imshow.cpp:(.text._ZN2cv3Mat7releaseEv[cv::Mat::release()]+0x3b): undefined reference to `cv::Mat::deallocate()'
collect2: ld returned 1 exit status

可能的原因是什么?我该如何纠正?

也有人可以建议一个专门针对opencv2的好教程。我以前使用过 opencv1 进行编程,但似乎发生了很多变化。

4

2 回答 2

2

添加库路径

export LD_LIBRARY_PATH=$LD_LIBARARY_PATH:/usr/local/lib

然后使用命令

g++ -o sample sample.cpp `pkg-config --cflags --libs opencv` 
于 2013-04-16T07:10:56.103 回答
1

看起来pkg-config程序假设库路径opencv libs在默认路径中,但事实并非如此。
尝试将-L选项添加到该gcc行。( -L{path to opencv libs})

于 2013-04-16T07:10:21.617 回答