• 大小: 596KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-17
  • 语言: Matlab
  • 标签: 图像拼接  

资源简介

图像拼接 matlab程序代码 可实现 不同视角的图像拼接

资源截图

代码片段和文件信息

% 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  appendimages.m

     文件        678  2011-03-12 18:23  findHomography.m

     文件     103647  2011-01-16 22:50  hall1.JPG

     文件     102984  2011-01-16 22:50  hall2.JPG

     文件       2348  2011-03-03 20:54  imMosaic.m

     文件      50481  2011-01-25 15:06  mosaic_hall.jpg

     文件        232  2011-03-11 21:30  mosaicTest.m

     文件        418  2010-10-24 15:43  randIndex.m

     文件       2377  2011-03-03 20:35  sift.m

     文件       2373  2011-01-25 15:12  siftMatch.m

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

     文件        582  2011-03-03 20:55  solveHomo.m

     文件     158157  2011-01-16 23:25  基于特征点的全自动无缝图像拼接方法.pdf

     文件      45632  2010-12-08 19:33  100-0024_img.jpg

     文件      41508  2010-12-08 19:33  100-0023_img.jpg

     文件     376537  2011-03-13 15:03  tmp.key

     文件       2377  2011-03-11 16:10  sift.asv

     文件       1943  2011-03-11 10:40  ransac1.asv

     文件       1943  2011-03-13 10:24  ransac1.m

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

               988886                    19


评论

共有 条评论