资源简介
SIFT算法的MATLAB 代码 可直接运行 只需在主窗口中输入:match "1 png" "2 png" ;
代码片段和文件信息
% im = appendimages(image1 image2)
%
% Return a new image that appends the two images side-by-side.
function im = appendimages(image1 image2)
% Select the image with the fewest rows and fill in enough empty rows
% to make it the same height as the other image.
rows1 = size(image11);
rows2 = size(image21);
if (rows1 < rows2)
image1(rows21) = 0;
else
image2(rows11) = 0;
end
% Now append both images side-by-side.
im = [image1 image2];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 373763 2015-04-16 16:51 siftDemoV4\1.png
文件 594033 2015-04-16 16:32 siftDemoV4\2.png
文件 461 2005-07-07 21:54 siftDemoV4\appendimages.m
文件 46433 2005-07-07 21:54 siftDemoV4\basmati.pgm
文件 97697 2005-07-07 21:54 siftDemoV4\book.pgm
文件 72310 2005-07-07 21:54 siftDemoV4\box.pgm
文件 1920 2005-07-07 21:54 siftDemoV4\defs.h
文件 1055 2005-07-07 21:54 siftDemoV4\LICENSE
文件 631 2005-07-07 21:54 siftDemoV4\Makefile
文件 4876 2005-07-07 21:54 siftDemoV4\match.c
文件 1940 2005-07-07 21:54 siftDemoV4\match.m
文件 69636 2015-03-15 19:06 siftDemoV4\psbII3E44ES.jpg
文件 216054 2004-09-06 18:02 siftDemoV4\RavMon.bmp
文件 7952 2005-07-07 21:54 siftDemoV4\README
文件 66614 2001-01-12 16:37 siftDemoV4\result.bmp
文件 196623 2005-07-07 21:54 siftDemoV4\scene.pgm
文件 1699 2005-07-07 21:54 siftDemoV4\showkeys.m
文件 45070 2005-07-07 21:54 siftDemoV4\sift
文件 2494 2005-07-07 21:54 siftDemoV4\sift.m
文件 94208 2005-07-07 21:54 siftDemoV4\siftWin32.exe
文件 38519 2015-03-08 10:26 siftDemoV4\tu5386_4.jpg
文件 7493 2005-07-07 21:54 siftDemoV4\util.c
文件 270054 2003-03-30 19:42 siftDemoV4\xiao-24.bmp
目录 0 2015-04-16 21:23 siftDemoV4
----------- --------- ---------- ----- ----
2211535 24
- 上一篇:基于MATLAB的树叶图像特征分类识别
- 下一篇:卡车智能模糊控制倒车系统仿真
评论
共有 条评论