From 4ad79cb73efb4ea8f2e9a9112adfdee2746c1303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Scho=CC=88nberger?= Date: Wed, 25 Apr 2012 21:37:40 +0200 Subject: [PATCH] replaced unicode characters in doc string --- skimage/filter/thresholding.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/filter/thresholding.py b/skimage/filter/thresholding.py index 1c34d522..b26fcf0d 100644 --- a/skimage/filter/thresholding.py +++ b/skimage/filter/thresholding.py @@ -29,9 +29,9 @@ def threshold_adaptive(image, block_size, method='gaussian', offset=0, offset : float, optional constant subtracted from weighted mean of neighborhood to calculate the local threshold value. Default offset is 0. - mode : {‘reflect’,’constant’,’nearest’,’mirror’, ‘wrap’}, optional + mode : {'reflect','constant','nearest','mirror', 'wrap'}, optional The mode parameter determines how the array borders are handled, where - cval is the value when mode is equal to ‘constant’. Default is ‘reflect’ + cval is the value when mode is equal to 'constant'. Default is 'reflect' param : {int, function}, optional either specify sigma for 'gaussian' method or function object for 'generic' method.