The VLFeat open source library implements popular computer vision algorithms specializing in image understanding and local features extraction and matching. Algorithms include Fisher Vector, VLAD, SIFT, MSER, k-means, hierarchical k-means, agglomerative information bottleneck, SLIC superpixels, quick shift superpixels, large scale SVM training, and many others. It is written in C for efficiency and compatibility, with interfaces in MATLAB for ease of use, and detailed documentation throughout. It supports Windows, Mac OS X, and Linux.
解压进入vlfeat的根目录
vlfeat_ROOT
修改Makefile
解除注释或添加一行
1
DISABLE_OPENMP=yes
打开
/etc/ld.so.conf
添加一行1
vlfeat_ROOT/toolbox/mex/mexa64
刷新环境配置
1
sudo ldconfig
再次进入vlfeat_ROOT,输入命令
1
make MEX=matlab_ROOT/bin/mex
编译成功后进入matlab命令行输入
1
run('vlfeat_ROOT/toolbox/vl_setup.m')
运行成功后查看版本,正常显示后完成安装
1
vl_version
在matlab起始位置下(我的是HOME目录下)添加一个
startup.m
文件写上1
run('vlfeat_ROOT/toolbox/vl_setup.m')
就可以每次启动时自动加载vlfeat