What is the inverse of a filter?
Show older comments
Dear all,
I have a gray intensity image, I, and let's say I applied a mean filter to it of size 3
Meanfilt = filter2(fspecial('average',3),I)/255;
My question is how to return the image back from Meanfilt ----> I ? Is there any inverse functions in matlab?
Thank you.
Meshoo
Accepted Answer
More Answers (1)
Image Analyst
on 22 Dec 2015
0 votes
Well there is such a thing as an inverse filter, though it has problems in real world implementations because the noise can wreak havoc. So they've invented better methods that are more robust and better in the presence of noise. Look up the help on wiener2() and deconvlucy().
Categories
Find more on Image Filtering in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!