How to get back an original image from its smoothed form applied by Gaussian smoothing filters?

1 vue (au cours des 30 derniers jours)
I have the following image. Cameraman.tif. I have applied the following code the image.
I = imread('cameraman.tif');
Iblur1 = imgaussfilt(I,2);
figure
imshow(I)
title('Original image')
figure
imshow(Iblur1)
title('Smoothed image, \sigma = 2')
Now i need to get back the original image from the smoothed image. Can anyone please figure it out. It will be highly appreciated if you provide the relevant code.
Thanks in advance.

Réponses (1)

MathReallyWorks
MathReallyWorks le 27 Mai 2017
Hello Mahmudul,
Read this blog, it is very well explained: Image-deblurring

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by