文件中有cmakelist.txt
运行命令
cmake .
就会生成makefile
type:
make
出现错误:
/usr/bin/ld: 找不到 -lopencv_dep_cudart
在cmake 时候用一下指令:
cmake -D CUDA_USE_STATIC_CUDA_RUNTIME=OFF .
make的时候可能会出现以下错误
make[2]: *** No rule to make target '/home/mindfusion/opencv-2.4.13/lib/libopencv_videostab.so.2.4.13', needed by 'cudasift'。 停止。
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/cudasift.dir/all' failed
make[1]: *** [CMakeFiles/cudasift.dir/all] Error 2
Makefile:149: recipe for target 'all' failed
make: *** [all] Error 2
我的方法是在opencv安装目录下搜索你缺少的动态链接库
直接copy到your_opencv_path/lib/下就可以了