资源简介

使用sift+RANSAC完成两幅图像的特征提取和匹配,并将较小图像区域在另一幅中用方框圈出来。运行plot.m。

资源截图

代码片段和文件信息

% 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  2011-01-26 04:15  plot\appendimages.m

     文件        688  2014-12-08 20:39  plot\findHomography.m

     文件      50545  2015-04-29 16:31  plot\object.png

     文件        418  2010-10-25 03:43  plot\randIndex.m

     文件       1945  2011-01-24 12:33  plot\ransac1.m

     文件     122784  2015-04-29 16:31  plot\scene.png

     文件       2367  2015-05-10 20:54  plot\sift.m

     文件       2403  2014-12-04 22:34  plot\siftMatch.m

     文件      94208  2005-07-08 09:54  plot\siftWin32.exe

     文件        584  2011-01-24 10:38  plot\solveHomo.m

     文件        636  2015-05-10 21:02  plot\test.asv

     文件        636  2015-05-10 21:01  plot\test.m

     文件     238161  2015-05-10 21:01  plot\tmp.key

     文件        943  2015-04-29 17:08  plot\xinhuitest.m

     目录          0  2015-05-10 21:02  plot

----------- ---------  ---------- -----  ----

               516779                    15


评论

共有 条评论