我有点困惑,因为我不能imshow
从 opencv 库中使用。我使用了 opencv 中的许多其他功能,但是当我想显示我的矩阵/图像时出现此错误。
Undefined symbols for architecture x86_64:
"cv::namedWindow(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)", referenced from:
_main in main.o
"cv::imshow(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, cv::_InputArray const&)", referenced from:
_main in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
引发此错误的代码行/函数是:
cvStartWindowThread();
namedWindow("DisplayImage", WINDOW_AUTOSIZE);
imshow("Display Image", img_bgr);
img_bgr
我想要的矩阵在哪里。
我正在使用 Xcode 5.1.1 开发 OSX 10.8.5,并且通过本演练安装了 opencv-2.4.10 。
任何人都有一个想法并且可以帮助我为什么不能调用上述函数?我搜索了有关此问题的线程,但似乎没有一个令人满意。
编辑:
现在已经卸载并安装了两次 OpenCV。一次是使用 Cmake 本身(作为应用程序),一次是在本教程的帮助下。没有解决仍然会出现相同的错误。没有人有想法吗?