diff --git a/skimage/transform/hough_transform.py b/skimage/transform/hough_transform.py index 8abcfa32..d88d7dd0 100644 --- a/skimage/transform/hough_transform.py +++ b/skimage/transform/hough_transform.py @@ -127,6 +127,12 @@ def hough_line(img, theta=None): distances : ndarray Distance values. + Notes + ----- + The origin is the top left corner of the original image. + The angle is counted clockwise from 9 o'clock. + The distance is the minimal algebraic distance from this origin to the line. + Examples -------- Generate a test image: