资源简介

基于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  2011-01-25 15:15  immosaic by  sift\appendimages.m

     文件        678  2011-01-23 23:34  immosaic by  sift\findHomography.m

     文件     103647  2011-01-16 22:50  immosaic by  sift\hall1.JPG

     文件     102984  2011-01-16 22:50  immosaic by  sift\hall2.JPG

     文件       2395  2012-07-08 16:08  immosaic by  sift\imMosaic.m

     文件       1334  2011-03-24 11:57  immosaic by  sift\license.txt

     文件        259  2012-07-08 16:06  immosaic by  sift\mosaicTest.m

     文件        418  2010-10-24 15:43  immosaic by  sift\randIndex.m

     文件       1947  2012-07-08 16:09  immosaic by  sift\ransac1.m

     文件       2344  2011-01-23 22:02  immosaic by  sift\sift.m

     文件       2373  2011-01-25 15:12  immosaic by  sift\siftMatch.m

     文件      94208  2005-07-07 21:54  immosaic by  sift\siftWin32.exe

     文件        586  2012-07-08 16:10  immosaic by  sift\solveHomo.m

    ..A.SH.      9216  2012-07-08 16:14  immosaic by  sift\Thumbs.db

     文件     141042  2012-07-08 16:12  immosaic by  sift\tmp.key

     目录          0  2012-07-08 16:05  immosaic by  sift

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

               463892                    16


评论

共有 条评论