TheScale-Invariant Feature Transform (SIFT)bundles(捆绑) a feature detector and a feature descriptor.The detector extracts from an image a number of fra...
分类:
其他好文 时间:
2015-07-20 01:13:33
阅读次数:
211
matlab 代码% 读入图片
I = vl_impattern('roofs1') ;
I = single(vl_imdown(rgb2gray(I))) ;% 设置bin大小
binSize = 8 ;
% sparse sift中bin大小是根据该层的高斯平滑的尺度sigma计算来的
% dense sift这里是设定binSize,反推sigma
magnif = 3 ;
% 对图像做高斯...
分类:
其他好文 时间:
2015-06-30 10:25:36
阅读次数:
485
VLFeat是一个很好用的开源库,其中实现了计算机视觉常用的算法,使用的语言是C和matlab。
官网:http://www.vlfeat.org/index.html
在官网下载最新版本后,在matlab中添加路径即可。
1,Dense Sift
在文章《sift特征提取算法》中提到,提取图像的sift特征分4步:构建DOG尺度空间;关键点定位;关键点方向赋值;生成描述子。
这里产生的s...
分类:
其他好文 时间:
2015-06-24 16:29:37
阅读次数:
162
SIFT,SURF,ORB,FAST 特征提取算法比较主要的特征检测方法有以下几种,在一般的图像处理库中(如opencv, VLFeat, Boofcv等)都会实现。
FAST ,Machine Learning for High-speed Corner Detection, 2006
SIFT,Distinctive Image Features from Scale-Invariant Key...
分类:
编程语言 时间:
2015-06-11 21:16:00
阅读次数:
472
注:下面有project网站的大部分都有paper和相应的code。Code一般是C/C++或者Matlab代码。最近一次更新:2013-3-17一、特征提取Feature Extraction:·SIFT [1] [Demo program][SIFT Library] [VLFeat]·PCA-...
分类:
其他好文 时间:
2015-04-17 13:28:24
阅读次数:
229
使用Matlab时间长了,难免会碰到使用mex文件的经历,不管是别人的还是自己的,就比如MatConvNet(http://www.vlfeat.org/matconvnet/)使用了混合编程的技术实现训练速度的提高。1. MEX的是什么?写MEX程序其实就是写一个DLL程序,不出意外的话,按照me...
分类:
其他好文 时间:
2015-03-18 17:52:37
阅读次数:
244
代码地址
代码GitHub地址
准备文件
vlfeat(SIFT的开源实现):下载地址
解压后将vlfeat-0.9.20\bin\win32加到系统的Path路径中,以便在命令行用sift命令
安装pysqlite:pip install pysqlite
安装matplotlib:pip isntall matplotlib
安装cherryPy(轻量级网页服务器):pip install ch...
分类:
其他好文 时间:
2015-03-06 19:14:33
阅读次数:
250
How to convert an OpenCVcv::Matinto afloat*that can be fed intoVlfeat vl_dsift_process:Mat mat = imread("image_name.jpg", 0); // 0 stands for grayscal...
分类:
其他好文 时间:
2014-12-19 18:42:20
阅读次数:
152
Feature Detection and DescriptionGeneral Libraries:VLFeat– Implementation of various feature descriptors (including SIFT, HOG, and LBP) and covariant ...
分类:
其他好文 时间:
2014-12-02 22:10:05
阅读次数:
327
引自:http://cvchina.net/post/50.html一、特征提取Feature Extraction: SIFT [1] [Demo program][SIFT Library] [VLFeat] PCA-SIFT [2] [Project] Affine-SIFT [3] [Pro...
分类:
其他好文 时间:
2014-12-02 22:04:44
阅读次数:
413