From c87d5567b4a6bcc324fa66ae1de594f8f0e1e62e Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Fri, 12 Sep 2014 14:07:46 +1000 Subject: [PATCH] Update find_contours docstring to use r/c notation This update fixes #1140. Other docstrings will probably need to be updated as well. --- skimage/measure/_find_contours.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/measure/_find_contours.py b/skimage/measure/_find_contours.py index 0eea9126..ff53795f 100755 --- a/skimage/measure/_find_contours.py +++ b/skimage/measure/_find_contours.py @@ -35,7 +35,7 @@ def find_contours(array, level, ------- contours : list of (n,2)-ndarrays Each contour is an ndarray of shape ``(n, 2)``, - consisting of n ``(x, y)`` coordinates along the contour. + consisting of n ``(row, column)`` coordinates along the contour. Notes -----