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?