From be7cf29240facdfdb495c8b0e33afc02ba601ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Orieux?= Date: Mon, 28 Oct 2013 15:23:18 +0100 Subject: [PATCH] Fix example. --- doc/examples/plot_deconvolution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/plot_deconvolution.py b/doc/examples/plot_deconvolution.py index 761193b4..f2b5afa4 100644 --- a/doc/examples/plot_deconvolution.py +++ b/doc/examples/plot_deconvolution.py @@ -34,7 +34,7 @@ from skimage import color, data, deconvolution lena = color.rgb2gray(data.lena()) from scipy.signal import convolve2d as conv2 -psf = np.ones((5, 5)) +psf = np.ones((5, 5)) / 25 lena = conv2(lena, psf, 'same') lena += 0.1 * lena.std() * np.random.standard_normal(lena.shape)