资源简介
matlab实现的sift算法,各个步骤的实现很清楚,运行可看效果。

代码片段和文件信息
% This m-file demoes the usage of SIFT functions. It generates SIFT keypionts and descriptors for one input image.
% Author: Yantao Zheng. Nov 2006. For Project of CS5240
% Add subfolder path.
main;
clc;
clear;
img1_dir = ‘demo-data\‘;
img1_file = ‘beaver11.bmp‘;
I1=imreadbw([img1_dir img1_file]) ;
I1_rgb = imread([img1_dir img1_file]) ;
I1=imresize(I1 [240 320]);
I1_rgb =imresize(I1_rgb [240 320]);
I1=I1-min(I1(:)) ; %图像插值缩放可能产生值超出0-1的范围的像素
I1=I1/max(I1(:)) ; %这两步重新归一化图像缩放后的数据
%fprintf(‘CS5240 -- SIFT: Match image: Computing frames and descriptors.\n‘) ;
[frames1descr1gss1dogss1 ] = do_sift( I1 ‘Verbosity‘ 1 ‘NumOctaves‘ 4 ‘Threshold‘ 0.1/3/2 ) ; %0.04/3/2
figure(1) ; clf ; plotss(dogss1) ; colormap gray ;
drawnow ;
figure(2) ; clf ;
imshow(I1_rgb) ; axis image ;
hold on ;
h=plotsiftframe( frames1 ) ; set(h‘LineWidth‘1‘Color‘‘g‘) ;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 189956 2009-09-30 09:59 SIFT代码\demo-data\beaver11.bmp
文件 189956 2009-09-30 10:10 SIFT代码\demo-data\beaver13.bmp
文件 14060 2003-02-17 17:45 SIFT代码\demo-data\image068.JPG
文件 13579 2003-02-17 17:45 SIFT代码\demo-data\image069.JPG
文件 578897 2003-04-25 15:36 SIFT代码\demo-data\view01.png
文件 574557 2003-04-25 15:36 SIFT代码\demo-data\view02.png
文件 5423 2010-06-03 10:31 SIFT代码\desc
文件 5412 2010-06-03 10:53 SIFT代码\desc
文件 949 2010-05-30 10:22 SIFT代码\do_demo_1.m
文件 1156 2010-05-19 11:41 SIFT代码\do_demo_2.m
文件 1171 2006-11-20 14:18 SIFT代码\do_demo_3.m
文件 1168 2010-05-19 11:43 SIFT代码\do_demo_4.m
文件 3816 2010-06-03 15:10 SIFT代码\do_sift.m
文件 4330 2014-04-04 19:51 SIFT代码\key-location\do_extrefine.asv
文件 4322 2010-06-03 15:04 SIFT代码\key-location\do_extrefine.m
文件 2133 2010-05-30 16:30 SIFT代码\key-location\do_localmax.m
文件 140 2006-05-04 11:43 SIFT代码\main.m
文件 5001 2014-03-28 14:49 SIFT代码\match\do_match.asv
文件 5001 2014-03-28 14:59 SIFT代码\match\do_match.m
文件 2505 2010-05-31 16:43 SIFT代码\orientation\do_orientation.m
文件 2400 2014-03-28 14:49 SIFT代码\README.asv
文件 2400 2014-03-28 14:53 SIFT代码\README.txt
文件 464 2006-11-14 22:56 SIFT代码\scale-space\do_diffofg.m
文件 2964 2010-05-30 15:28 SIFT代码\scale-space\do_gaussian.m
文件 215 2006-11-14 22:59 SIFT代码\scale-space\smooth.m
文件 1698 2010-05-18 21:53 SIFT代码\sift_demo.m
文件 359 2006-11-15 13:53 SIFT代码\util\appendimages.m
文件 301 2006-11-16 14:07 SIFT代码\util\imreadbw.m
文件 1812 2010-06-03 15:22 SIFT代码\util\plotsiftfr
文件 640 2006-11-20 15:19 SIFT代码\util\plotss.m
............此处省略12个文件信息
相关资源
- 串行级联cpm系统MATLAB仿真
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
评论
共有 条评论