gpt4 book ai didi

c++ - 仅在使用 -Wl,-rpath,/usr/local/MATLAB/R2014b/bin/glnxa64 添加 Matkab 代码后出现链接错误 OpenCV

转载 作者:太空宇宙 更新时间:2023-11-04 03:46:31 24 4
gpt4 key购买 nike

我已成功运行 openCV 站点中的示例,并在 eclipse 中显示图像 ( http://docs.opencv.org/doc/tutorials/introduction/linux_eclipse/linux_eclipse.html )

我有另一个项目,其中我从 mat 文件中读取一些矩阵,当我尝试合并两者时,以显示从 mat 文件中读取的图像,显​​示这些错误:

19:09:59 **** Incremental Build of configuration Debug for project testMAT ****
make all
Building file: ../src/testMAT.cpp
Invoking: GCC C++ Compiler
g++ -I/usr/local/MATLAB/R2014b/extern/include -I/usr/include/opencv -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/testMAT.d" -MT"src/testMAT.d" -o "src/testMAT.o" "../src/testMAT.cpp"
../src/testMAT.cpp: In function ‘int diagnose(const char*, const char*)’:
../src/testMAT.cpp:70:43: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘long unsigned int’ [-Wformat=]
printf("the size of c is %u\n", sizeof c);
^
../src/testMAT.cpp:78:10: warning: unused variable ‘mrows’ [-Wunused-variable]
mwSize mrows = mxGetM(fPtr);
^
../src/testMAT.cpp:79:10: warning: unused variable ‘ncols’ [-Wunused-variable]
mwSize ncols = mxGetN(fPtr);
^
../src/testMAT.cpp:38:16: warning: unused variable ‘dir’ [-Wunused-variable]
const char **dir;
^
../src/testMAT.cpp:39:22: warning: unused variable ‘nome’ [-Wunused-variable]
const char *name, *nome;
^
../src/testMAT.cpp:40:9: warning: unused variable ‘ndir’ [-Wunused-variable]
int ndir;
^
../src/testMAT.cpp:41:9: warning: unused variable ‘i’ [-Wunused-variable]
int i;
^
../src/testMAT.cpp:57:10: warning: variable ‘nElements’ set but not used [-Wunused-but-set-variable]
mwSize nElements; /* number of elements in array */
^
../src/testMAT.cpp:60:11: warning: unused variable ‘realPtr’ [-Wunused-variable]
double *realPtr; /* pointer to data */
^
../src/testMAT.cpp:61:10: warning: variable ‘total’ set but not used [-Wunused-but-set-variable]
double total; /* value to calculate */
^
Finished building: ../src/testMAT.cpp

**Building target: testMAT
Invoking: GCC C++ Linker
g++ -Wl,-rpath,/usr/local/MATLAB/R2014b/bin/glnxa64 -L/usr/local/MATLAB/R2014b/bin/glnxa64 -L/usr/lib/x86_64-linux-gnu -o "testMAT" ./src/testMAT.o -leng -lmat -lmex -lut -lmx -lopencv_core -lopencv_imgproc -lopencv_highgui
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFReadRGBAStrip@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFIsTiled@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFWriteScanline@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFGetField@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFScanlineSize@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFReadEncodedTile@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFReadRGBATile@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFClose@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFRGBAImageOK@LIBTIFF_4.0'
makefile:45: recipe for target 'testMAT' failed
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFOpen@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFReadEncodedStrip@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFSetField@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFSetWarningHandler@LIBTIFF_4.0'
/usr/lib/x86_64-linux-gnu/libopencv_highgui.so: undefined reference to `TIFFSetErrorHandler@LIBTIFF_4.0'
collect2: error: ld returned 1 exit status
make: *** [testMAT] Error 1 **

19:10:00 Build Finished (took 810ms)

当我只添加 -Wl,-rpath,/usr/local/MATLAB/R2014b/bin/glnxa64 而不向源文件添加任何代码时,即使在 opencv 示例上也会显示此错误。没有标志,一切正常。

如何将 matlab 代码包含到这个 opencv 项目中?

最佳答案

这个主题很旧,但我遇到了同样的问题并修复了它。

我尝试重新安装 OpenCV,最后我发现 ccmake

BUILD_TIFF | OFF

是安装OpenCV时的默认参数。

所以我将其设置为 ON 并重新安装 OpenCV,它就可以工作了。

关于c++ - 仅在使用 -Wl,-rpath,/usr/local/MATLAB/R2014b/bin/glnxa64 添加 Matkab 代码后出现链接错误 OpenCV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28013277/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com