diff --git a/skimage/transform/hough_transform.py b/skimage/transform/hough_transform.py index 79facb62..05d5cfbe 100644 --- a/skimage/transform/hough_transform.py +++ b/skimage/transform/hough_transform.py @@ -164,7 +164,7 @@ def hough_peaks(hspace, angles, dists, min_distance=10, min_angle=10, Minimum angle separating lines (maximum filter size for second dimension of hough space). threshold : float - Minimum intensity of peaks calculated as `0.5 * max(hspace)`. + Minimum intensity of peaks. Default is `0.5 * max(hspace)`. num_peaks : int Maximum number of peaks. When the number of peaks exceeds `num_peaks`, return `num_peaks` coordinates based on peak intensity.