资源简介

基于Harris角点检测的图像拼接matlab实现, 主要内容包括Harris角点检测,NCC,RANSAC以及2幅图像的拼接 The main contents include the Harris corner detector, th

资源截图

代码片段和文件信息

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

     文件        252  2012-03-15 17:27  imageMosaic\calcDist.m

     文件       1662  2012-03-18 21:02  imageMosaic\estHomography.asv

     文件       1656  2012-03-17 20:25  imageMosaic\estHomography.m

     文件       2026  2012-03-17 19:24  imageMosaic\findCorr.asv

     文件       2030  2012-03-17 20:24  imageMosaic\findCorr.m

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

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

     文件       2875  2012-03-10 20:55  imageMosaic\Harris.asv

     文件       2896  2012-03-18 10:01  imageMosaic\Harris.m

     文件        850  2012-04-03 16:03  imageMosaic\main.m

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

     文件        587  2012-03-10 18:34  imageMosaic\solveHomo.m

     文件       2150  2012-03-17 20:08  imageMosaic\warpTheImage.m

     目录          0  2012-03-18 22:46  imageMosaic

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

               224494                    15


评论

共有 条评论