I am trying to implement the Wiener Filter to perform deconvolution on blurred image. My implementation is like this
import numpy as np from numpy.fft import
We could try unsupervised weiner too (deconvolution with a Wiener-Hunt approach, where the hyperparameters are automatically estimated, using a stochastic iterative process (Gibbs sampler), as described here):
deconvolved, _ = restoration.unsupervised_wiener(im, psf)