资源简介
这是关于求图像匹配点的matlab程序。
运行通过,可以添加自己需要的图像。
主要方法有用到harris角点检测,ncc粗匹配,ransac精匹配。
代码片段和文件信息
function [x1 x2 npts] = checkargs(arg)
if length(arg) == 2
x1 = arg{1};
x2 = arg{2};
if ~all(size(x1)==size(x2))
error(‘x1 and x2 must have the same size‘);
elseif size(x11) ~= 3
error(‘x1 and x2 must be 3xN‘);
end
elseif length(arg) == 1
if size(arg{1}1) ~= 6
error(‘Single argument x must be 6xN‘);
else
x1 = arg{1}(1:3:);
x2 = arg{1}(4:6:);
end
else
error(‘Wrong number of arguments supplied‘);
end
npts = size(x12);
if npts < 4
error(‘At least 8 points are needed to compute the fundamental matrix‘);
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 82998 2016-12-07 19:06 harris\00.bmp
文件 82998 2016-12-07 19:06 harris\01.bmp
文件 82998 2016-12-07 19:06 harris\02.bmp
文件 82998 2016-12-07 19:06 harris\03.bmp
文件 82998 2016-12-07 19:06 harris\11.bmp
文件 82998 2016-12-07 19:06 harris\12.bmp
文件 82998 2016-12-07 19:06 harris\21.bmp
文件 82998 2016-12-07 19:06 harris\22.bmp
文件 740 2016-12-07 19:06 harris\checkargs.m
文件 548 2016-12-07 19:06 harris\check_collineation.m
文件 2279 2016-12-07 19:06 harris\funddist.m
文件 3399 2016-12-07 19:06 harris\fundmatrix.m
文件 655 2016-12-07 19:06 harris\get_consensus_set.m
文件 4016 2016-12-07 19:06 harris\harris.m
文件 2537 2016-12-07 19:06 harris\harris2.m
文件 50651 2016-12-07 19:06 harris\High2.jpg
文件 55455 2016-12-07 19:06 harris\High3.jpg
文件 343 2016-12-07 19:06 harris\isdegenerate.m
文件 2489 2016-12-07 19:06 harris\jiaodianjiance2.m
文件 2499 2016-12-07 19:06 harris\match.m
文件 2780 2016-12-07 19:06 harris\match_ransac.m
文件 2525 2016-12-07 19:06 harris\normalise2dpts.m
文件 251 2016-12-07 19:06 harris\projectivematrix.m
文件 9674 2016-12-07 19:06 harris\ransac.m
文件 3491 2016-12-07 19:06 harris\ransacfitfundmatrix.m
目录 0 2016-12-07 19:06 harris
----------- --------- ---------- ----- ----
808316 26
- 上一篇:区域生长matlab代码
- 下一篇:matlab 控制理论教程
相关资源
- HMMforspeechrecogntion 一个可执行的HMM语音
- GAPSO 这个算法是遗传算法和粒子群优
- 4 matlab区域填充的具体算法及演示
- QGA 该算法明确描述了量子遗传算法的
- ACO 用MATLAB编写的蚁群算法最短路径寻
- BM3D BM3D去噪算法的实现和相关文档
- svm_matlab 用SVM算法实现聚类与分类的例
- Peking_University_PSO_All_in_one 北京大学计
- wnn 一个用小波神经网络进行非线性函
- sparse_representation 最热门的稀疏表示的
- PCALDA PCA+LDA经典人脸识别算法
- p-laplace 改进了Criminisi算法
- SimuAPSO 模拟退火发与粒子群算法的结
- CLSPSO 混沌粒子群算法
- cw 带时间窗的节约算法
- image_matching
- OMP 小波变换和压缩感知中的OMP算法比
- FaceVerification 人脸认证流程
- SVSLMS 本程序提出了变步长自适应滤波
- edge_detection 利用小波边缘检测算法实
- ELMAN 详细介绍了ELMAN这种神经网络的构
- imagesegmentation 压缩文件里有四种图像
- gatool 用遗传算法开发的一个求解非线
- pso_matlab PSO算法
- rpca RobustPCA 是最近提出的非常新的图
- HSOGA 《求解全局优化问题的混合自适
- my_ga_test1 该用matlab 实现的遗传算法可
- recognize_face 利用灰度积分投影直接对
- QAMPINP 全数字解调下16QAM信号的频偏估
- matlab 为大家提供方便
评论
共有 条评论