资源简介

sift特征点检测及图像拼接,matlab7.0实现的,我从别人那里整过来的,测试的话,用在matlab里面直接调用match('b1.jpg','b2.jpg')即可,我测试成功,里面也有说明文档,为了科研,共享,希望大家有好的代码都0分共享,与己方便,与人方便,中国科研才会发展更迅速

资源截图

代码片段和文件信息

% 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];   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4876  2005-07-07 21:54  match.c

     文件       5134  2011-03-14 08:50  match.m

     文件       2361  2010-04-16 19:55  normalise2dpts.m

     文件       2312  2010-04-16 19:55  normalise.m

     文件       2218  2010-04-16 19:55  randomsample.m

     文件       9877  2010-04-16 19:55  ransac.m

     文件       3451  2010-05-04 15:09  ransacfithomographys.m

     文件       7952  2005-07-07 21:54  README

     文件       1699  2005-07-07 21:54  showkeys.m

     文件      45070  2005-07-07 21:54  sift

     文件       2673  2010-04-27 10:50  sift.asv

     文件       2666  2010-05-29 09:57  sift.m

     文件      94208  2005-07-07 21:54  siftWin32.exe

     文件     520378  2011-03-14 10:07  tmp.key

     文件      90616  2011-03-14 10:07  tmp.pgm

     文件       2333  2011-03-14 08:59  transformImage.asv

     文件       2336  2011-03-14 09:20  transformImage.m

     文件       7493  2005-07-07 21:54  util.c

     文件      19471  2011-03-14 09:55  100-0023_img.jpg

     文件      25787  2011-03-14 09:55  100-0024_img.jpg

     文件        461  2005-07-07 21:54  appendimages.m

     文件      17807  2010-05-08 11:50  b1.jpg

     文件      19748  2010-05-08 11:51  b2.jpg

     文件      19181  2010-05-08 11:53  b3.jpg

     文件        605  2011-03-14 09:56  bounds.m

     文件       1920  2005-07-07 21:54  defs.h

     文件        203  2010-05-17 22:18  exam1.asv

     文件        158  2011-03-14 10:07  exam.m

     文件       1007  2010-04-16 19:55  hnormalise.m

     文件        778  2010-05-04 15:07  homogdist2d.m

............此处省略12个文件信息

评论

共有 条评论