• 大小: 869B
    文件类型: .m
    金币: 2
    下载: 1 次
    发布日期: 2021-06-16
  • 语言: Matlab
  • 标签: ART  重建  parallel  beam  

资源简介

采用平行束采集,利用ART算法进行重建,其中有详细的注释,希望对从事CT图像重建的人员有帮助

资源截图

代码片段和文件信息

clear all
clc
L = 256;%phantom size
I = phantom(L);%create a phantom
x0 = ones(L)*0.2;%the first iterative array
factor = 1.0;%relaxation factor
ray_num = L/2*90;%the number of rays in total
ite_num = 0;%iteration number
while(ite_num < 10)
    for theta = 0:2:180
        for ii=1:L/2
            Ori = zeros(L);
            Ori(:(2*ii-1):2*ii) = 1;%ray length is 2 pixels
            proj = imrotate(Ori theta ‘crop‘

评论

共有 条评论