From 82578234b570ba741ccdfb8c09612b18a9ed7d92 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 12 Sep 2014 06:14:45 -0500 Subject: [PATCH] Fix swirl docstring to use (row, column) nomenclature --- skimage/transform/_warps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/transform/_warps.py b/skimage/transform/_warps.py index 23b56164..720b3a24 100644 --- a/skimage/transform/_warps.py +++ b/skimage/transform/_warps.py @@ -294,7 +294,7 @@ def swirl(image, center=None, strength=1, radius=100, rotation=0, ---------- image : ndarray Input image. - center : (x,y) tuple or (2,) ndarray, optional + center : (row, column) tuple or (2,) ndarray, optional Center coordinate of transformation. strength : float, optional The amount of swirling applied.