From 6df06b46dd793159f90b7003ef711f6add00e348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Thu, 8 Nov 2012 17:14:30 +0100 Subject: [PATCH] Fix threshold default value description --- skimage/transform/hough_transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.