• 大小: 351KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-07
  • 语言: 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];   

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-12-03 21:26  3.3图像拼接技术\
     文件         461  2011-01-25 15:15  3.3图像拼接技术\appendimages.m
     文件         678  2011-01-23 23:34  3.3图像拼接技术\findHomography.m
     文件      103647  2011-01-16 22:50  3.3图像拼接技术\hall1.JPG
     文件      102984  2011-01-16 22:50  3.3图像拼接技术\hall2.JPG
     文件        2391  2011-03-24 23:44  3.3图像拼接技术\imMosaic.m
     文件        1334  2011-03-24 11:57  3.3图像拼接技术\license.txt
     文件         254  2012-09-26 16:47  3.3图像拼接技术\mosaicTest.m
     文件       49199  2012-09-26 16:48  3.3图像拼接技术\mosaic_a.jpg
     文件       50481  2011-01-25 15:06  3.3图像拼接技术\mosaic_hall.jpg
     文件         418  2010-10-24 15:43  3.3图像拼接技术\randIndex.m
     文件        1945  2011-01-23 23:33  3.3图像拼接技术\ransac1.m
     文件        2346  2012-09-26 16:48  3.3图像拼接技术\sift.m
     文件        2373  2011-01-25 15:12  3.3图像拼接技术\siftMatch.m
     文件       94208  2005-07-07 21:54  3.3图像拼接技术\siftWin32.exe
     文件         584  2011-01-23 21:38  3.3图像拼接技术\solveHomo.m
     文件      141042  2012-09-26 16:48  3.3图像拼接技术\tmp.key
     文件       24064  2011-12-03 21:26  3.3图像拼接技术\程序运行说明.doc

评论

共有 条评论