What is the inverse of a filter?

조회 수: 9 (최근 30일)
Meshooo
Meshooo 2015년 12월 11일
댓글: Meshooo 2016년 1월 6일
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

채택된 답변

Walter Roberson
Walter Roberson 2015년 12월 11일
For the averaging filter there is also a way to do it by solving systems of linear equations; I think the logic should extend to anything constructed using conv2() but I would need to think more to check. It involves creating an (R*C) x (R*C) matrix of weights, which could get rather large. I do not know how efficient it would be.
  댓글 수: 1
Meshooo
Meshooo 2015년 12월 22일
OK, thank you very much.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2015년 12월 22일
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().
  댓글 수: 1
Meshooo
Meshooo 2016년 1월 6일
Thank you very much.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by