• 大小: 1.53M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-12
  • 语言: Matlab
  • 标签: surf  匹配  matlab  

资源简介

这是一个surf特征匹配matlab程序,里面有实例和测试图像

资源截图

代码片段和文件信息

% Example 2 Corresponding points
% Load images
  I1=imread(‘TestImages/testc1.png‘);
  I2=imread(‘TestImages/testc2.png‘);
% Get the Key Points
  Options.upright=true;
  Options.tresh=0.0001;
  Ipts1=OpenSurf(I1Options);
  Ipts2=OpenSurf(I2Options);
% Put the landmark descriptors in a matrix
  D1 = reshape([Ipts1.descriptor]64[]); 
  D2 = reshape([Ipts2.descriptor]64[]); 
% Find the best matches
  err=zeros(1length(Ipts1));
  cor1=1:length(Ipts1); 
  cor2=zeros(1length(Ipts1));
  for i=1:length(Ipts1)
      distance=sum((D2-repmat(D1(:i)[1 length(Ipts2)])).^21);
      [err(i)cor2(i)]=min(distance);
  end
% Sort matches on vector distance
  [err ind]=sort(err); 
  cor1=cor1(ind); 
  cor2=cor2(ind);
% Show both images
  I = zeros([size(I11) size(I12)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-07-13 15:53  opensurf\
     文件        3778  2010-09-07 00:27  opensurf\OpenSurf.m
     目录           0  2013-07-13 15:41  opensurf\SubFunctions\
     文件         603  2010-07-27 04:56  opensurf\SubFunctions\FastHessian_BuildDerivative.m
     文件         738  2010-07-30 04:32  opensurf\SubFunctions\FastHessian_Responselayer.m
     文件        1699  2010-07-30 00:10  opensurf\SubFunctions\FastHessian_buildResponselayer.m
     文件        1877  2010-07-21 00:37  opensurf\SubFunctions\FastHessian_buildResponseMap.m
     文件        2353  2010-07-30 23:43  opensurf\SubFunctions\FastHessian_getIpoints.m
     文件         455  2010-07-27 04:56  opensurf\SubFunctions\FastHessian_getLaplacian.m
     文件         450  2010-07-27 04:56  opensurf\SubFunctions\FastHessian_getResponse.m
     文件        2478  2010-07-30 23:02  opensurf\SubFunctions\FastHessian_interpolateExtremum.m
     文件        1680  2010-07-30 22:56  opensurf\SubFunctions\FastHessian_isExtremum.m
     文件         791  2010-07-29 22:58  opensurf\SubFunctions\IntegralImage_BoxIntegral.m
     文件         494  2010-07-30 04:32  opensurf\SubFunctions\IntegralImage_HaarX.m
     文件         556  2010-07-30 04:37  opensurf\SubFunctions\IntegralImage_HaarY.m
     文件         796  2010-07-29 22:42  opensurf\SubFunctions\IntegralImage_IntegralImage.m
     文件        1089  2010-07-30 23:39  opensurf\SubFunctions\PaintSURF.m
     文件        1554  2010-07-31 00:39  opensurf\SubFunctions\SurfDescriptor_DecribeInterestPoints.m
     文件        3636  2010-07-31 00:40  opensurf\SubFunctions\SurfDescriptor_GetDescriptor.m
     文件        2921  2010-07-31 00:07  opensurf\SubFunctions\SurfDescriptor_GetOrientation.m
     目录           0  2013-07-13 15:41  opensurf\TestImages\
     文件      239755  2010-09-07 00:22  opensurf\TestImages\lena1.png
     文件      211716  2010-09-07 00:22  opensurf\TestImages\lena2.png
     文件        5296  2010-07-20 05:38  opensurf\TestImages\test.png
     文件      123228  2010-07-27 01:06  opensurf\TestImages\testc1.png
     文件      122063  2010-07-27 01:06  opensurf\TestImages\testc2.png
     目录           0  2013-07-13 15:41  opensurf\WarpFunctions\
     文件        9721  2010-09-07 01:04  opensurf\WarpFunctions\affine_warp.m
     文件        1211  2010-09-07 00:26  opensurf\example2.m
     文件        1776  2010-09-07 01:00  opensurf\example3.m
     文件      239755  2010-09-07 00:22  opensurf\lena1.png
............此处省略2个文件信息

评论

共有 条评论