码迷,mamicode.com
首页 > 其他好文 > 详细

vlfeat SIFT Tutorials

时间:2015-07-20 01:13:33      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

The Scale-Invariant Feature Transform (SIFT) bundles(捆绑) a feature detector and a feature descriptor.

 

The detector extracts from an image a number of frames (attributed regions) in a way which is consistent with (some) variations of the illumination, viewpoint and other viewing conditions.

 

The descriptor associates to the regions a signature(标志) which identifies their appearance compactly(紧密) and robustly. For a more in-depth description of the algorithm, see our API reference for SIFT.

 

(SIFT是一个很好的特征检测器,它能够从一张图片中检测出一组不受光照、视线等影响的特征点。同时它本身就是一个很好的特征描述子,它能够充分反映特征点附近局部图像的形状和纹理结构特性,具有较好的鲁棒性和独特性)

 

 (本博客系原创,转载请注明出处:http://www.cnblogs.com/pfli1995/p/4657302.html)

 (博主cnds中对应文章:http://blog.csdn.net/xuexiyanjiusheng/article/details/46944395)

Extracting frames and descriptors

Both the detector and descriptor are accessible by the vl_sift MATLAB command (there is a similar command line utility). Open MATLAB and load a test image

I = vl_impattern(roofs1) ;
image(I) ;

 

vlfeat SIFT Tutorials

标签:

原文地址:http://www.cnblogs.com/pfli1995/p/4658360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!