Fix hough transform return value ordering in doc string

This commit is contained in:
Johannes Schönberger
2012-10-31 09:26:47 +01:00
parent 1221a98a42
commit 5be7f62813
+2 -2
View File
@@ -111,10 +111,10 @@ def hough(img, theta=None):
-------
H : 2-D ndarray of uint64
Hough transform accumulator.
distances : ndarray
Distance values.
theta : ndarray
Angles at which the transform was computed.
distances : ndarray
Distance values.
Examples
--------