You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Alkuperäinen kuva

function deblurring()

I = imread('cameraman.tif');

PSF = fspecial('gaussian',7,10);
Blurred = imfilter(I,PSF,'symmetric','conv');
figure;imshow(Blurred);title('Blurred Image');

  • No labels
You must log in to comment.