From 29b91ca01d2b7195063fc1c354b683ad97af623a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Fri, 22 Mar 2013 23:16:13 +0100 Subject: [PATCH] minor doc improv. --- 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 079ce54e..1c36e799 100644 --- a/skimage/transform/hough_transform.py +++ b/skimage/transform/hough_transform.py @@ -128,7 +128,7 @@ def hough_line(img, theta=None): ----- The origin is the top left corner of the original image. X and Y axis are horizontal and vertical edges respectively. - The distance is the minimal algebraic distance from this origin to the line. + The distance is the minimal algebraic distance from the origin to the detected line. Examples --------