资源简介
非刚性网格的图像配准算法,适用于医学图像重的图像配准算法,效果很好

代码片段和文件信息
function I=bspline_transform(OI)
% Function bspline_transform is a wrapper of the mex
% bspline_transform_2d_double and bspline_transform_3d mex functions
%
% I = bspline_transform(OI)
% I : Input image.
% O : Transformation grid
%
% Function is written by D.Kroon University of Twente (July 2008)
if(ndims(I)==2)
nx=size(O1)-2; ny=size(O2)-2;
if(~isa(I‘double‘)) I=im2double(I); end
I=bspline_transform_2d_double(O(::1)O(::2)Inxny);
else
nx=size(O1)-2; ny=size(O2)-2; nz=size(O3)-2;
if(isa(I‘double‘))
I=bspline_transform_3d_double(double(O(:::1))double(O(:::2))double(O(:::3))double(I)double(nx)double(ny)double(nz));
else
I=bspline_transform_3d_single(single(O(:::1))single(O(:::2))single(O(:::3))single(I)single(nx)single(ny)single(nz));
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 68075 2008-07-21 14:55 brain1.png
文件 67894 2008-07-21 14:55 brain2.png
文件 869 2008-07-29 12:50 bspline_transform.m
文件 5834 2008-07-15 17:16 bspline_transform_2d_double.c
文件 7662 2008-07-15 17:16 bspline_transform_3d_double.c
文件 7836 2008-07-15 17:16 bspline_transform_3d_single.c
文件 151 2008-08-01 10:45 compile_c_files.m
文件 9739 2008-07-30 16:12 fminsd.m
文件 3414 2008-07-29 12:30 fspecial3.m
文件 1648 2008-08-01 11:26 get_example_data.m
文件 1239 2008-08-01 11:23 imresize3d.m
文件 34678 2008-05-26 12:21 lenag1.png
文件 36184 2008-05-22 09:51 lenag2.png
文件 2136 2008-08-01 12:25 make_grid_image.m
文件 1384 2008-08-01 12:24 make_init_grid.m
文件 1193 2008-08-01 12:09 make_transformation_matrix.m
文件 3657 2008-07-30 16:10 mutual_histogram_double.c
文件 3649 2008-07-30 17:09 mutual_histogram_single.c
文件 1160 2008-07-29 15:30 refine_grid.m
文件 6250 2008-08-20 10:01 registration_error.m
文件 1558 2008-08-01 10:37 registration_example1.m
文件 1570 2008-08-01 10:37 registration_example2.m
文件 1954 2008-08-01 10:36 registration_example3.m
文件 1810 2008-08-01 10:36 registration_example4.m
文件 2059 2008-07-30 16:51 registration_example5.m
文件 1575 2008-08-01 10:36 registration_example6.m
文件 1200 2008-08-01 12:13 registration_example7.m
文件 10273 2008-08-20 10:05 registration_gradient.m
文件 1764 2008-08-01 11:24 registration_image.m
文件 1180 2008-08-01 12:17 registration_rigid_image.m
文件 5362 2008-07-16 11:49 rigide_transform_double.c
............此处省略3个文件信息
- 上一篇:DSP_AD采样程序
- 下一篇:Spring Boot整合SpringDataJPA
相关资源
- 编程实现二维DCT变换
- 图像二值化
- 用FFT对信号进行频谱分析
- Tone-Reservation
- QGA 量子遗传算法
- 差分形式的阻滞增长模型
- 遗传算法的M文件
- 简单二阶互联系统的非线性动力学分
- 手写数字识别-模板匹配法
- Stock_Watson_动态因子分析模型
- 果蝇优化算法优化支持向量回归程序
- 自己做的一个简单GUI扑克纸牌识别-
- multi output SVR
- AR过程的线性建模过程与各种功率谱估
- PCNN TOOLBOX
- plstoolbox.zip
- 中国国家基础地理信息系统GIS数据
- 粒子群微电网优化调度
- 矩阵分析-经典教材-中文版-Roger.A.Ho
- 压缩感知TwIST
- 基于最小错误率的贝叶斯手写数字分
- 最全系统辨识源代码,包括多种最小
- 导弹制导实验
- 画跟踪精确度图的程序.zip
- 重力场大地水准面及重力异常阶次误
- prtools5.2.3工具包
- 脉冲耦合神经网络工具箱PCNN-toolbox
- SVM算法-回归拟合程序.zip
- Kriging代理模型EGO算法.zip
- Matalb实现停车场完整系统
评论
共有 条评论