From 5be7f628138602e2692f526730402321316a6227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Wed, 31 Oct 2012 09:26:47 +0100 Subject: [PATCH] Fix hough transform return value ordering in doc string --- skimage/transform/hough_transform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/transform/hough_transform.py b/skimage/transform/hough_transform.py index a5987d5d..5e77954d 100644 --- a/skimage/transform/hough_transform.py +++ b/skimage/transform/hough_transform.py @@ -111,10 +111,10 @@ def hough(img, theta=None): ------- H : 2-D ndarray of uint64 Hough transform accumulator. - distances : ndarray - Distance values. theta : ndarray Angles at which the transform was computed. + distances : ndarray + Distance values. Examples --------