Fix example.

This commit is contained in:
François Orieux
2013-10-28 15:23:18 +01:00
parent 37ea62dedf
commit be7cf29240
+1 -1
View File
@@ -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)