SciPy

scipy.signal.wiener

scipy.signal.wiener(im, mysize=None, noise=None)[source]

Perform a Wiener filter on an N-dimensional array.

Apply a Wiener filter to the N-dimensional array im.

Parameters
imndarray

An N-dimensional array.

mysizeint or array_like, optional

A scalar or an N-length list giving the size of the Wiener filter window in each dimension. Elements of mysize should be odd. If mysize is a scalar, then this scalar is used as the size in each dimension.

noisefloat, optional

The noise-power to use. If None, then noise is estimated as the average of the local variance of the input.

Returns
outndarray

Wiener filtered result with the same shape as im.

Previous topic

scipy.signal.medfilt2d

Next topic

scipy.signal.symiirorder1