From 35628169f0d7799070246ae780dcbb774aba6298 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Tue, 21 Jun 2016 13:19:32 -0400 Subject: [PATCH] Specify only 2-tuples allowed in Frangi docstring --- skimage/filters/_frangi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skimage/filters/_frangi.py b/skimage/filters/_frangi.py index c9164858..0f1d2226 100644 --- a/skimage/filters/_frangi.py +++ b/skimage/filters/_frangi.py @@ -13,7 +13,7 @@ def _frangi_hessian_common_filter(image, scale_range, scale_step, ---------- image : (N, M) ndarray Array with input image data. - scale_range : tuple of floats, optional + scale_range : 2-tuple of floats, optional The range of sigmas used. scale_step : float, optional Step size between sigmas. @@ -84,7 +84,7 @@ def frangi(image, scale_range=(1, 10), scale_step=2, beta1=0.5, beta2=15, ---------- image : (N, M) ndarray Array with input image data. - scale_range : tuple of floats, optional + scale_range : 2-tuple of floats, optional The range of sigmas used. scale_step : float, optional Step size between sigmas. @@ -141,7 +141,7 @@ def hessian(image, scale_range=(1, 10), scale_step=2, beta1=0.5, beta2=15): ---------- image : (N, M) ndarray Array with input image data. - scale_range : tuple of floats, optional + scale_range : 2-tuple of floats, optional The range of sigmas used. scale_step : float, optional Step size between sigmas.