From def7698cd74486dbd43c25c2b4630b467316e46e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Scho=CC=88nberger?= Date: Mon, 30 Apr 2012 09:05:04 +0200 Subject: [PATCH] fixed typo in doc string --- skimage/filter/thresholding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/filter/thresholding.py b/skimage/filter/thresholding.py index 2cb2d8e0..efef9a45 100644 --- a/skimage/filter/thresholding.py +++ b/skimage/filter/thresholding.py @@ -24,7 +24,7 @@ def threshold_adaptive(image, block_size, method='gaussian', offset=0, Uneven size of pixel neighborhood which is used to calculate the threshold value (e.g. 3, 5, 7, ..., 21, ...). method : {'generic', 'gaussian', 'mean', 'median'}, optional - Method used to determine adaptive threshold fpr local neighbourhood in + Method used to determine adaptive threshold for local neighbourhood in weighted mean image. * 'generic': use custom function (see `param` parameter) * 'gaussian': apply gaussian filter (see `param` parameter for custom