资源简介

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  appendimages.m
     文件         678  2011-01-23 23:34  findHomography.m
     文件      103647  2011-01-16 22:50  hall1.JPG
     文件      102984  2011-01-16 22:50  hall2.JPG
     文件        2353  2011-01-25 14:51  imMosaic.m
     文件         246  2011-01-27 14:14  mosaicTest.m
     文件       50481  2011-01-25 15:06  mosaic_hall.jpg
     文件         418  2010-10-24 15:43  randIndex.m
     文件        1945  2011-01-23 23:33  ransac1.m
     文件        2344  2011-01-23 22:02  sift.m
     文件        2373  2011-01-25 15:12  siftMatch.m
     文件       94208  2005-07-07 21:54  siftWin32.exe
     文件         584  2011-01-23 21:38  solveHomo.m
     文件      158157  2011-01-16 23:25  基于特征点的全自动无缝图像拼接方法.pdf
     文件         461  2011-01-25 15:15  图片拼接\appendimages.m
     文件         678  2011-01-23 23:34  图片拼接\findHomography.m
     文件      103647  2011-01-16 22:50  图片拼接\hall1.JPG
     文件      102984  2011-01-16 22:50  图片拼接\hall2.JPG
     文件        2565  2013-12-30 21:59  图片拼接\imMosaic.m
     文件         775  2013-12-30 21:58  图片拼接\mosaicTest.m
     文件      124918  2013-12-30 21:45  图片拼接\mosaictt.jpg
     文件       50481  2011-01-25 15:06  图片拼接\mosaic_hall.jpg
     文件         418  2010-10-24 15:43  图片拼接\randIndex.m
     文件        1945  2011-01-23 23:33  图片拼接\ransac1.m
     文件        2362  2013-12-23 19:28  图片拼接\sift.m
     文件        2373  2011-01-25 15:12  图片拼接\siftMatch.m
     文件       94208  2005-07-07 21:54  图片拼接\siftWin32.exe
     文件         584  2011-01-23 21:38  图片拼接\solveHomo.m
     文件      588116  2013-12-30 21:45  图片拼接\tmp.key
     文件      158157  2011-01-16 23:25  图片拼接\基于特征点的全自动无缝图像拼接方法.pdf
     文件        1990  2013-12-13 22:53  图片拼接\新建 文本文档.txt
............此处省略2个文件信息

评论

共有 条评论