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