资源简介
非刚性网格的图像配准算法,适用于医学图像重的图像配准算法,效果很好
代码片段和文件信息
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
相关资源
- GSA算法源程序
- contourlet代码
- 图像栅格化处理
- 计算机图形学实验报告及代码2
- HDL-Coder详细教程
- 老外编的kriging插值
- 雷达中的微多普勒效应 程序代码
- SAR图像变化检测方法,包括了对数比
- 矩量法计算线天线辐射方向图
- 车间调度算法
- 非局部均值滤波
- 直流微网建模,母线电压200V,改进下
- 自校正PID控制算法
- relief算法的代码实现
- 斯皮尔曼的等级相关系数
- 互信息的计算
- Zernike矩亚像素边缘检测
- 相位展开传统算法
- 倾斜haar-like feature计算
- m序列_gold及m&walsh序列生成及序列相关
- BP神经网络程序非工具箱
- 深度玻尔兹曼机
- PCB识别包含程序截图和原图
- 无网格方法解悬臂梁问题
- 基于maltab的LED阵列仿真
- 稀疏分解图像重建程序,把图像分解
- 基于ANN的6种2ASK、4ASK、2FSK、4FSK、2P
- 数字图像处理大作业————各种图
- IAPWS_IF97
- CBBA任务分配程序
评论
共有 条评论