⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trial1.m

📁 Matlab code to reconstruct using simple back projection
💻 M
字号:
% This program Reconstruct the image from its projections                  %
% The following command will genrate and display "Phantom                  %
% head model" of size 256, 256                                             %
P = phantom(256);
imshow(P)
% To generate projections,"theta" is varied from 0 to 180                  %
% with different incremental steps. and "Radon" function is called         %
theta1 = 0:5:175; [R1,xp] = radon(P,theta1);
figure, imagesc(theta1,xp,R1); colormap(gray); colorbar
xlabel('\theta'); ylabel('x\prime');
% Inverse Radon function is called to Reconstruct the image                %
I1 = iradon(R1,theta1);
figure, imshow(I1)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -