资源简介

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-08-13 19:14  sift-match\
     文件         461  2005-07-07 21:54  sift-match\appendimages.m
     文件         605  2011-03-14 09:56  sift-match\bounds.m
     文件       37906  2011-05-10 20:51  sift-match\coins.png
     文件       91408  2011-05-31 19:56  sift-match\feiji1.png
     文件      103745  2011-05-31 19:46  sift-match\feiji2.png
     文件        1546  2011-06-09 11:25  sift-match\har.m
     文件        5046  2011-05-31 23:32  sift-match\harris_improve.m
     文件        1007  2010-04-16 19:55  sift-match\hnormalise.m
     文件         778  2010-05-04 15:07  sift-match\homogdist2d.m
     文件        2493  2010-04-16 19:55  sift-match\homography2d.m
     文件         879  2011-05-31 21:25  sift-match\homoTrans.m
     文件        3801  2010-05-19 21:52  sift-match\imTrans.m
     文件        2318  2010-04-16 19:55  sift-match\iscolinear.m
     文件         815  2010-05-04 15:08  sift-match\isdegenerate.m
     文件       12390  2011-05-22 13:33  sift-match\kuaicoins.png
     文件         256  2011-05-31 22:16  sift-match\main.m
     文件         244  2011-05-31 21:54  sift-match\maincai.m
     文件        4664  2011-06-01 00:13  sift-match\match.m
     文件        3455  2011-06-09 11:26  sift-match\match12.m
     文件        2312  2010-04-16 19:55  sift-match\normalise.m
     文件        2361  2010-04-16 19:55  sift-match\normalise2dpts.m
     文件      184318  2011-05-31 09:43  sift-match\pin1.jpg
     文件      160703  2011-05-31 09:46  sift-match\pin2.jpg
     文件         629  2011-06-02 16:07  sift-match\qqq.m
     文件        2218  2010-04-16 19:55  sift-match\randomsample.m
     文件        9877  2011-05-31 21:19  sift-match\ransac.m
     文件        3451  2011-05-31 21:15  sift-match\ransacfithomographys.m
     文件        1699  2011-05-31 20:54  sift-match\showkeys.m
     文件        2489  2011-05-31 21:54  sift-match\sift.m
     文件       94208  2005-07-07 21:54  sift-match\siftWin32.exe
............此处省略1个文件信息

评论

共有 条评论