资源简介
国外网站上找到的一个图像拼接程序,将三张图片拼接为一张。
大致方法为Haaris找角点,粗匹配,RANSAC精匹配。
有详细的注释,附带一篇代码说明文档,非常适合初学者学习研究
代码片段和文件信息
function n2 = dist2(x c)
%DIST2 Calculates squared distance between two sets of points.
%
% Description
% D = DIST2(X C) takes two matrices of vectors and calculates the
% squared Euclidean distance between them. Both matrices must be of
% the same column dimension. If X has M rows and N columns and C has
% L rows and N columns then the result has M rows and L columns. The
% I Jth entry is the squared distance from the Ith row of X to the
% Jth row of C.
%
% See also
% GMMACTIV KMEANS RBFFWD
%
% Copyright (c) Christopher M Bishop Ian T Nabney (1996 1997)
[ndata dimx] = size(x);
[ncentres dimc] = size(c);
if dimx ~= dimc
error(‘Data dimension does not match dimension of centres‘)
end
n2 = (ones(ncentres 1) * sum((x.^2)‘ 1))‘ + ...
ones(ndata
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2243 2008-10-26 12:26 normalise2dpts.m
文件 2282 2008-10-26 12:29 randomsample.m
文件 9953 2008-10-26 12:29 ransac.m
文件 5050 2008-10-26 12:19 ransacfithomography.m
文件 124253 2012-07-25 09:31 unti
文件 4538 2008-11-14 14:45 vgg_gui_H.m
文件 3001 2008-10-27 19:56 vgg_warp_H.m
文件 846 2008-10-26 12:21 dist2.m
文件 1274 2010-07-24 23:48 ext_desc.m
文件 1559 2010-07-24 20:28 harris.m
文件 1069 2008-10-26 12:30 hnormalise.m
文件 2493 2008-10-26 12:30 homography2d.m
文件 2383 2012-07-25 09:35 iscolinear.m
文件 69455 2007-02-26 22:39 keble_a.jpg
文件 69819 2007-02-26 22:39 keble_b.jpg
文件 68821 2007-02-26 22:39 keble_c.jpg
文件 4893 2012-07-25 10:14 mosaic.m
文件 372769 2010-07-24 23:41 mosaic.pdf
----------- --------- ---------- ----- ----
746701 18
相关资源
- SIFT2844912
- image_matching
- pinjie 本文用用Harris算子提取特征点
- SSDA SSDA序贯相似性检测方法对图像进
- phasecorrelation 运用相位相关法对图像进
- CVPR09-ScSPM 基于空间金字塔匹配的稀疏
- zernike 矩不变量
- yigechepaishibiedechengxu 车牌识别
- sift sift图像匹配的纯matlab代码
- RANSAC-match 可以在harris角点检测和ncc粗
- histmatch 直方图匹配
- stero 立体匹配
- Stabilization- 基于块匹配的稳像算法
- OMP OMP算法:匹配追踪算法
- Template-matching 模板匹配字符识别的程
- MyOMP 一个简单的运用正交匹配追踪算
- match_version_1.3 该程序主要功能是实现
- CS 压缩感知代码
- imageMosaic 基于Harris角点检测的图像拼
- stereo-disparity matlab实现图像匹配的视差
- harris-ncc-ransac 本代码主要是harris角点
- fingei--vein 本文是关于手指静脉图像识
- LMS-of-image 最小二乘影像匹配
- traffic-sign-recognition 复杂场景中的红色
- surf 一个surf特征匹配matlab程序
- StOMP 分段自适应正交匹配追踪StOMP算法
- image-matching matlab编写的一个影像匹配
- mimo MIMO中的预编码方案
-
SURF-ba
sed-image-stitching SURF算法作为新 - plot 使用sift+RANSAC完成两幅图像的特征
评论
共有 条评论