def blur(sigma=0.1): def call(x): x = gaussian(x, sigma=sigma, preserve_range=True, multichannel=True) return x return call