资源简介
这是一个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_Responsela
文件 1699 2010-07-30 00:10 opensurf\SubFunctions\FastHessian_buildResponsela
文件 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\SurfDesc
文件 3636 2010-07-31 00:40 opensurf\SubFunctions\SurfDesc
文件 2921 2010-07-31 00:07 opensurf\SubFunctions\SurfDesc
目录 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个文件信息
相关资源
- HMMforspeechrecogntion 一个可执行的HMM语音
- popular-UCI-datasets 一些非常有用的数据
- GAPSO 这个算法是遗传算法和粒子群优
- synchronization 利用matlab仿真实现载波的
- Gabor Gabor小波变换的matlab实现
- 4 matlab区域填充的具体算法及演示
- MATLAB_image_process_with_PDE 运用偏微分方
- gabijiao 该程序通过实例(函数)
- SIFT2844912
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- EELM
- barcode 基于图像的条形码识别程序(识
-
myaudiopla
yer 使用Matlab GUI实现的音频 - B-spline-surface 在MATLAB-2008a环境下编写的
- NURBS-surface 在MATLAB-2008a环境下编写的
- ACO 用MATLAB编写的蚁群算法最短路径寻
- wavplay 基于matlab GUI界面的播放器
- allfns 是由牛津大学VGG开发的三维重建
- spectrogram_fft
- adaboost 基于adaboost的人脸识别程序
- 2 2课程报告要求:按照讲课内容
- gps GPS信号的捕获、处理程序
- fuzzynetme 模糊神经网络的MATLAB程序
- naive_bayes_numeric 利用matlab实现的朴素贝
- MFandMPF 计算肌电信号积分肌电值
- BM3D BM3D去噪算法的实现和相关文档
- BarrelDistortion 两个matlab程序
- Kalman 用卡尔曼滤波跟踪目标实例
- WSN-matlab-simulation
评论
共有 条评论