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