资源简介

经过测试的基于sift程序的图像拼接。以lowe的程序为sift提取核心程序,此外还包括ransac算法,单应矩阵提取,图像融合(包括加权融合以及平均融合)算法,融合效果在testnew中可见。

资源截图

代码片段和文件信息

% 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  2012-11-04 19:17  image-stitch based sift\
     目录           0  2012-11-04 19:17  image-stitch based sift\基于sift的图像拼接算法\
     文件      103647  2011-01-16 22:50  image-stitch based sift\基于sift的图像拼接算法\a1.JPG
     文件      102984  2011-01-16 22:50  image-stitch based sift\基于sift的图像拼接算法\a2.JPG
     文件         461  2011-01-25 15:15  image-stitch based sift\基于sift的图像拼接算法\appendimages.m
     文件         293  2012-10-15 10:22  image-stitch based sift\基于sift的图像拼接算法\calcDist.m
     文件         101  2012-10-30 11:29  image-stitch based sift\基于sift的图像拼接算法\canshu1.m
     文件          99  2012-10-30 11:23  image-stitch based sift\基于sift的图像拼接算法\canshu2.m
     文件         940  2012-10-23 16:57  image-stitch based sift\基于sift的图像拼接算法\findHomography.m
     文件         593  2012-10-22 15:18  image-stitch based sift\基于sift的图像拼接算法\homo2.m
     文件        2557  2012-10-23 17:18  image-stitch based sift\基于sift的图像拼接算法\imMosaic.m
     文件        1944  2012-10-23 16:59  image-stitch based sift\基于sift的图像拼接算法\imMosictest2.m
     文件        1334  2011-03-24 11:57  image-stitch based sift\基于sift的图像拼接算法\license.txt
     文件         531  2012-10-22 08:53  image-stitch based sift\基于sift的图像拼接算法\mosaicTest.m
     文件         439  2012-10-22 16:42  image-stitch based sift\基于sift的图像拼接算法\randIndex.m
     文件         562  2012-10-22 13:37  image-stitch based sift\基于sift的图像拼接算法\randtest.m
     文件        2124  2012-10-23 16:56  image-stitch based sift\基于sift的图像拼接算法\ransac1.m
     文件        2343  2012-10-30 17:35  image-stitch based sift\基于sift的图像拼接算法\sift.m
     文件        2383  2012-10-23 16:27  image-stitch based sift\基于sift的图像拼接算法\siftMatch.m
     文件       94208  2005-07-07 21:54  image-stitch based sift\基于sift的图像拼接算法\siftWin32.exe
     文件         585  2011-05-16 20:21  image-stitch based sift\基于sift的图像拼接算法\solveHomo.m
     文件        1278  2012-10-23 11:07  image-stitch based sift\基于sift的图像拼接算法\test.m
     文件        3039  2012-10-17 11:09  image-stitch based sift\基于sift的图像拼接算法\test2.m
     文件         276  2012-10-22 09:01  image-stitch based sift\基于sift的图像拼接算法\test3.m
     文件         689  2012-10-23 17:00  image-stitch based sift\基于sift的图像拼接算法\test4.m
     文件        5578  2012-10-30 15:20  image-stitch based sift\基于sift的图像拼接算法\testnew.m
     文件      376537  2012-10-30 17:43  image-stitch based sift\基于sift的图像拼接算法\tmp.key

评论

共有 条评论