资源简介
一个非常好的学习ICP算法示例工程。Matlab代码齐全,含有测试数据,可以显示迭代后配准效果。对于学习图形、图像配准非常有帮助。
代码片段和文件信息
function varargout = ann(method varargin)
% some predicates
is_normal_matrix = @(x) isnumeric(x) && ndims(x) == 2 && isreal(x) && ~issparse(x);
is_posint_scalar = @(x) isnumeric(x) && isscalar(x) && x == fix(x) && x > 0;
is_switch = @(x) islogical(x) && isscalar(x);
is_float_scalar = @(x) isfloat(x) && isscalar(x);
k = 1;
switch method
case ‘init‘
ref_pts = varargin{1};
varargin = varargin(2:end);
case ‘search‘
tree = varargin{1};
query_pts = varargin{2};
if length(varargin) > 2
k = varargin{3};
varargin = varargin(4:end);
else
varargin = varargin(3:end);
end
case ‘deinit‘
tree = varargin{1};
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5665 2008-01-03 03:00 ann.m
文件 1089 2008-05-14 01:46 compute_normals.m
文件 7627 2008-05-14 02:22 icp.m
文件 33280 2007-12-25 04:51 mexann.mexw32
文件 62664 2008-05-14 02:24 victoria1.mat
文件 1339 2008-05-14 02:26 tutorial_icp.m
文件 63173 2008-05-14 02:24 michael4.mat
文件 63099 2008-05-14 02:24 michael3.mat
文件 372 2009-01-28 22:27 set_options.m
- 上一篇:matlab语音信号的频谱分析
- 下一篇:双通道dpca程序
相关资源
- gui 带GUI界面
-
myaudiopla
yer 使用Matlab GUI实现的音频 - wavplay 基于matlab GUI界面的播放器
- V1.0 串口通信程序
-
vision_ba
sed_barcode_reader - SNR(complete) 基于matlab的GUI的GPS捕获
- ImageMatlab Matlab数字图像处理
- matlab_audio 基于matlab GUI的音频信息处理
- MATLAB_Serial
- matlab-GUI 本人编写的matlab的GUI程序
- FaceRecogTool 基于稀疏表示的人脸识别系
- monitor matlab做的GUI
- serial_communication MATLAB
- fanhuishi RFID防碰撞技术
- PCALDA
- CSBP_matlab 用于压缩感知的基追踪(B
- handwritingPrecognitionPGUI 基于BP神经网络
- snippets CVPR2008行为识别文章“Action S
- shuiguo 自己做的水果识别matlab程序以及
- orthogonal-matching-pursuit OMP算法的matlab的
- CBIR-matlab-GUI
- guided-filter 指导滤波
- chengxu 手指静脉识别的代码
- FOA-ELM 算法思想是:1) 根据果蝇优化
- Matlab-GUI 自编的matlab gui小程序。功能
- zuizhong
- Technical-indicators-by-Matlab 用matlab编写了
- Desktop 语音识别
- qiantuihuidai_method 前推回代法求解三相
- texture_GUI 此程序是基于灰度共生矩阵
评论
共有 条评论