Remove credit field (and others). Pep8 small fix.

This commit is contained in:
François Orieux
2013-12-14 01:31:00 +01:00
parent e0bb826e9e
commit 9eb878e440
2 changed files with 4 additions and 12 deletions
+3 -7
View File
@@ -11,11 +11,6 @@ from scipy.signal import convolve2d
from . import uft
__credits__ = ["François Orieux"]
__license__ = "mit"
__version__ = "1.0.0"
__maintainer__ = "François Orieux"
__status__ = "stable"
__keywords__ = "restoration, image, deconvolution"
@@ -145,7 +140,9 @@ def wiener(image, psf, balance, reg=None, is_real=True, clip=True):
return deconv
def unsupervised_wiener(image, psf, reg=None, user_params=None, is_real=True, clip=True):
def unsupervised_wiener(image, psf, reg=None, user_params=None, is_real=True,
clip=True):
"""Unsupervised Wiener-Hunt deconvolution
Return the deconvolution with a Wiener-Hunt approach, where the
@@ -369,7 +366,6 @@ def richardson_lucy(image, psf, iterations=50, clip=True):
References
----------
.. [2] http://en.wikipedia.org/wiki/Richardson%E2%80%93Lucy_deconvolution
"""
image = image.astype(np.float)
psf = psf.astype(np.float)
+1 -5
View File
@@ -27,11 +27,7 @@ from __future__ import division, print_function
import numpy as np
__credits__ = ["François Orieux"]
__license__ = "mit"
__version__ = "1.0.0"
__maintainer__ = "Francois Orieux"
__keywords__ = "fft"
__keywords__ = "fft, Fourier Transform, orthonormal, unitary"
def ufftn(inarray, dim=None):