DeepMatching主页:http://lear.inrialpes.fr/src/deepmatching/
安装
下载安装了其中的CPU版本:
Version 1.2.2
1. 下载压缩包:
deepmatching_1.2.2.zip
2. 解压开后
make clean all
一直出现错误:
下面是具体错误,最终可以使用的makefile版本往下拖拖拖。。。
错误1:“找不到/usr/lib64/atlas/libsatlas.so文件”
所以,借鉴大家的智慧:
参考:https://blog.youkuaiyun.com/xczexcel/article/details/79574740
http://xiuyuliang.cn/2014/12/05/deepmatching/
#先装库:(一般都装过)
sudo apt-get install libatlas_dev
sudo apt-get install libatlas_base_dev
#然后在路径 /usr/lib下:
sudo ld -shared -o libsatlas.so --whole-archive libatlas.a liblapack.a --no-whole-archive libf77blas.a libcblas.a
#修改 makefile 文件:
LAPACKLDFLAGS=/usr/lib64/atlas/libsatlas.so
改为LAPACKLDFLAGS=/usr/lib/libsatlas.so
错误2:关于gfortran的未定义的引用
#修