资源简介
利用matlab对sift算法进行实现,可以得到很好的匹配效果
代码片段和文件信息
% 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];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 461 2005-07-08 12:54 appendimages.m
文件 46433 2005-07-08 12:54 basmati.pgm
文件 97697 2005-07-08 12:54 book.pgm
文件 72310 2005-07-08 12:54 box.pgm
文件 1920 2005-07-08 12:54 defs.h
文件 1055 2005-07-08 12:54 LICENSE
文件 480 2015-08-21 16:08 main.m
文件 631 2005-07-08 12:54 Makefile
文件 4911 2015-08-09 10:24 match.c
文件 2298 2015-08-21 15:29 match.m
文件 7952 2005-07-08 12:54 README
文件 196623 2005-07-08 12:54 scene.pgm
文件 1698 2015-08-02 16:52 showkeys.m
文件 45070 2005-07-08 12:54 sift
文件 2589 2015-08-21 15:30 sift.m
文件 94208 2005-07-08 12:54 siftWin32.exe
文件 74134 2015-08-21 16:08 tmp.key
文件 120015 2015-08-21 16:08 tmp.pgm
文件 137798 2015-08-21 11:20 tmp1.txt
文件 194009 2015-08-21 11:20 tmp2.txt
文件 7493 2005-07-08 12:54 util.c
- 上一篇:matlab课程设计
- 下一篇:高胜率智能止盈EA.mq4
评论
共有 条评论