From 15b4a4d979f73a7b1d24220a767d3f9e02697c37 Mon Sep 17 00:00:00 2001 From: Emmanuelle Gouillart Date: Sun, 25 Aug 2013 15:04:22 +0200 Subject: [PATCH] DOC: corrected description of multichannel parameter --- skimage/filter/_gaussian.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/skimage/filter/_gaussian.py b/skimage/filter/_gaussian.py index 6f0f9a64..0d6cdfbe 100644 --- a/skimage/filter/_gaussian.py +++ b/skimage/filter/_gaussian.py @@ -31,9 +31,8 @@ def gaussian_filter(image, sigma, output=None, mode='nearest', cval=0, is 0.0 multichannel : bool, optional (default: False) Whether the last axis of the image is to be interpreted as multiple - channels. Only 3 channels are supported. If `None`, the function will - attempt to guess this, and raise a warning if ambiguous, when the - array has shape (M, N, 3). + channels. If True, each channel is filtered separately (channels are + not mixed together). Returns