matlab配置vlfeat库(v0.9.18)

Posted wxl845235800

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab配置vlfeat库(v0.9.18)相关的知识,希望对你有一定的参考价值。

VLFeat的主页:http://www.vlfeat.org/index.html

VLFeat开源库实现了很多著名的机器视觉算法,如HOGSIFTMSERk-meanshierarchical k-meansagglomerative information bottleneckSLIC superpixels, 和 quick shift。VLFeat开源库是用C语言写的,以确保其效率和兼容性,同时VLFeat还提供了MATLAB接口和详细的文档。

vlfeat中vl_gmm

[means, covariances, priors] = vl_gmm(mfcc, 8, ‘MaxNumIterations‘, 20);


 

一、准备vlfeat文件,可以是二进制包,也可以是源码。如果使用windows平台的话,推荐使用二进制包。

版本:0.9.18

 

二、安装

1. 将所下载的二进制包解压缩到某个位置,如D:盘

2. 打开matlab,输入edit startup.m创建启动文件startup.m

3. 在startup.m中编辑内容(注意,如果将vlfeat安装在不同的地方,需要将以下的”D:”改为你所安装的地址):

run(D:Softwarevlfeat-0.9.18-binvlfeat-0.9.18	oolboxvl_setup)

4. 保存并关闭startup.m文件,重新打开matlab程序,安装即成功。

 

三、验证

1. 在matlab中输入path

技术图片

 

 2. 在matlab中输入vl_version,可以得到vlfeat的版本号。

技术图片

 

 

有这些东西:

• The  library
 example (vl_)
• Caltech-101running example
• Visual descriptors
 feature (fast dense SIFT, vl_)
- Vector Quantization (Elkan, vl_kmeans, vl_kdtreebuild,
vl_kdtreequery)
- Spatial histograms (vl_binsum, vl_binsearch)
• Learning and classification
- Fast linear SVMs
- PEGASOS (vl_pegasos)
- Fast non-linear SVMs
- Homogeneous kernel maps (vl_homkermap)
• Other VLFeat features

• The VLFeat library- SIFT example (vl_sift)• Caltech-101 running example• Visual descriptors- PHOW feature (fast dense SIFT, vl_phow)- Vector Quantization (Elkan, vl_kmeans, vl_kdtreebuild,vl_kdtreequery)- Spatial histograms (vl_binsum, vl_binsearch)• Learning and classification- Fast linear SVMs- PEGASOS (vl_pegasos)- Fast non-linear SVMs- Homogeneous kernel maps (vl_homkermap)• Other VLFeat features

 

【转载自】

在matlab中配置vlfeat - 天马行空W - 博客园 https://www.cnblogs.com/woshitianma/p/3872939.html

很好用的库:VLFEAT - Hanson-jun - 博客园 https://www.cnblogs.com/scnucs/archive/2013/05/06/3062068.html

 

以上是关于matlab配置vlfeat库(v0.9.18)的主要内容,如果未能解决你的问题,请参考以下文章

Matlab中配置VLFeat

在 java 中使用 VLfeat 库编译 Matlab 代码

matlab - vlfeat - vl_pegasos (svm) 分类

记录一下vlfeat视觉库配置

Matlab中VLFeat的图像拼接

VLFeat在matlab和vs中安装