43 lines
885 B
Matlab
43 lines
885 B
Matlab
clear;
|
|
close all;
|
|
taille_ecran = get(0,'ScreenSize');
|
|
L = taille_ecran(3);
|
|
H = taille_ecran(4);
|
|
|
|
load donnees;
|
|
|
|
figure('Name','Tomographie : resolution par retroprojection','Position',[0.2*L,0,0.8*L,0.5*H]);
|
|
|
|
% Affichage de l'image originale :
|
|
subplot(1,3,1);
|
|
imagesc(I);
|
|
colormap gray;
|
|
axis off;
|
|
axis equal;
|
|
title('Image d''origine','FontSize',20);
|
|
|
|
% Affichage du sinogramme :
|
|
subplot(1,3,2);
|
|
imagesc(sinogramme);
|
|
colormap gray;
|
|
axis off;
|
|
axis equal;
|
|
title('Sinogramme','FontSize',20);
|
|
drawnow;
|
|
|
|
% filtrage du sinogramme :
|
|
sinogramme = filtrage_sinogramme(sinogramme);
|
|
|
|
% Rétroprojection :
|
|
f = retroprojection(sinogramme,theta,nb_rayons,nb_lignes,nb_colonnes);
|
|
|
|
% Affichage de la solution :
|
|
subplot(1,3,3);
|
|
imagesc(f);
|
|
colormap gray;
|
|
axis off;
|
|
axis equal;
|
|
title('Resultat de la tomographie','FontSize',20);
|
|
|
|
imwrite(ind2rgb(im2uint8(mat2gray(f)), gray(256)), "saves/exo2_rick.png")
|