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

2 ビュー (過去 30 日間)
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.

回答 (1 件)

MathReallyWorks
MathReallyWorks 2017 年 5 月 27 日
Hello Mahmudul,
Read this blog, it is very well explained: Image-deblurring

カテゴリ

Help Center および File ExchangeSmoothing and Denoising についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by