资源简介

很基础的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  2011-01-25 20:15  appendimages.m
     文件         678  2011-01-24 04:34  findHomography.m
     文件      103647  2011-01-17 03:50  hall1.JPG
     文件      102984  2011-01-17 03:50  hall2.JPG
     文件        2391  2011-03-25 03:44  imMosaic.m
     文件        1334  2011-03-24 15:57  license.txt
     文件         256  2011-03-25 03:50  mosaicTest.m
     文件       50481  2011-01-25 20:06  mosaic_hall.jpg
     文件         418  2010-10-24 19:43  randIndex.m
     文件        1945  2011-01-24 04:33  ransac1.m
     文件        2344  2011-01-24 03:02  sift.m
     文件        2373  2011-01-25 20:12  siftMatch.m
     文件       94208  2005-07-08 01:54  siftWin32.exe
     文件         584  2011-01-24 02:38  solveHomo.m

评论

共有 条评论