You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
484 B
Matlab

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

%Script per la sperimentazione sulla sfocatura di immagini
A=imread('gatto.png'); % Carico limmagine
A=double(A);
A=A/255;
[m,n,~]=size(A);
[B,psf]=sfoca(A); % Applico la sfocatura
B = B + randn(m,n, 3) * 0.02; % Aggiungo rumore
C=recover(B, psf); % Applico il metodo del gradiente coniugato
D=recover_reg(B,psf); % Applico il metodo del gradiente coniugato con regolarizzione
imwrite(B,'gatto_sfocato.png');
imwrite(C,'gatto_rec.png');
imwrite(D,'gatto_rec_reg.png');