资源简介
ct 平行束滤波反投影重建算法matlab 分为创建原始图像 投影 滤波重建三个文件
代码片段和文件信息
function tuoyuan=creat_ellipse(ellipsen)
p = zeros(n);
xax = ( (0:n-1)-(n-1)/2 ) / ((n-1)/2);
xg = repmat(xax n 1); % x coordinates the y coordinates are rot90(xg)
asq = ellipse(2)^2; % a^2
bsq = ellipse(3)^2; % b^2
phi = ellipse(6)*pi/180; % rotation angle in radians
x0 = ellipse(4); % x offset
y0 = ellipse(5); % y offset
A = ellipse(1); % Amplitude change for this ellipse
x=xg-x0; % Center the ellipse
y=rot90(xg)-y0;
cosp = cos(phi);
sinp = sin(phi);
idx=find(((x.*cosp + y.*sinp).^2)./asq + ((y.*cosp - x.*sinp).^2)./bsq <= 1);
p(idx) = p(idx) + A;
tuoyuan=p;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2590 2012-07-25 19:37 xiugai.m
文件 700 2012-07-25 19:12 creat_ellipse.m
文件 500 2012-07-25 16:38 gtheta.m
----------- --------- ---------- ----- ----
3790 3
- 上一篇:VVRPe
- 下一篇:BP-face-recognization
相关资源
- imagereconstruction 基于小波和插值的超分
- CT CT算法与原理
- POCS 基于凸集投影算法的超分辨率图像
- CSR_IR 基于稀疏表示的图像重建
- watermark 基于DCT域音频水印完整源代码
- ScSR Jianchao Yang 的基于稀疏表示的单幅
- K-SVD-dictionary-training-algorithms 基于KSv
- L1 基于L1范数的多帧图像超分辨率图像
- mianhuizhi 简易有效的CT图像三维重建方
- CT-FBP 用MATLAB实现了CT平行束滤波反投
- ct-fbp
- SR--MAP
- CTImageReconstruction.m
- 基于matlab的fbp算法程序
- FBP算法实现
- oct 处理代码
- FBP-有无滤波器及插值方式的比较mat
- 光声图像重建
- 图像重建技术matlab代码实现
- Matlab程序 关于FBP
评论
共有 条评论