Wiener Filter for image deblur

前端 未结 3 989
自闭症患者
自闭症患者 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:31

    For data comparison, you can find a sample implementation of Wiener filtering and unsupervisived Wiener filtering at

    http://scikit-image.org/docs/dev/auto_examples/plot_restoration.html

    If you give your original image data, we may be able to help further.

    EDIT: Original link seems to be down, try this one: http://scikit-image.org/docs/dev/auto_examples/filters/plot_restoration.html

提交回复
热议问题