문제

I am using Wiener filter for deblurring an image.

http://www.mathworks.it/it/help/images/ref/deconvwnr.html

The important snippet is here:

estimated_nsr = noise_var / var(I(:));
wnr3 = deconvwnr(blurred_noisy, PSF, estimated_nsr);

The problem is that deconwnr needs an estitmate of NSR calculated with the original image I.
But I don't have the original image, I have only the blurred_noisy image.

What value should I pass as estmated_nsr?

도움이 되었습니까?

해결책

If NSR is Noise to Signal Ratio then wouldn't you have to just guess at how noisy the original image was? So you could use NSR=0 and assume there is no noise on the original image.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top