Wiener Filter for image deblur

前端 未结 3 988
自闭症患者
自闭症患者 2021-01-01 00:24

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         


        
3条回答
  •  自闭症患者
    2021-01-01 00:44

    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)
    

提交回复
热议问题