• 大小: 11KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-12
  • 语言: Matlab
  • 标签: matlab  SIFT  RANSAC  

资源简介

SIFT特征提取演算法(包含匹配以及除错机制RANSAC)-可用于两张影像之特征点匹配

资源截图

代码片段和文件信息

% 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  2005-07-07 21:54  SIFT\appendimages.m

     文件       4076  2009-03-16 16:49  SIFT\fundmatrix.m

     文件       1971  2009-02-25 17:07  SIFT\match.m

     文件       2432  2009-03-16 16:47  SIFT\normalise2dpts.m

     文件      10013  2009-03-16 16:48  SIFT\ransac.m

     文件       5705  2009-03-16 16:42  SIFT\ransacfitfundmatrix.m

     文件       2494  2005-07-07 21:54  SIFT\sift.m

     目录          0  2010-01-13 11:54  SIFT

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

                27152                    8


评论

共有 条评论