From f4bdd94452f9dbf204a85c9d01e0bfcf5dc43e5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Tue, 9 Oct 2012 11:07:35 +0200 Subject: [PATCH] Add note about range of angle values --- skimage/transform/hough_transform.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skimage/transform/hough_transform.py b/skimage/transform/hough_transform.py index 71454a21..d4ba37b9 100644 --- a/skimage/transform/hough_transform.py +++ b/skimage/transform/hough_transform.py @@ -151,7 +151,8 @@ def hough_peaks(hspace, angles, dists, min_distance=10, min_angle=10, hspace : (N, M) array Hough space returned by the `hough` function. angles : (M,) array - Angles returned by the `hough` function. + Angles returned by the `hough` function. Assumed to be continuous + (`angles[-1] - angles[0] == PI`). dists : (N, ) array Distances returned by the `hough` function. min_distance : int