mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-15 11:25:53 +08:00
Fix precision of output in hough_line_peaks doctest
This commit is contained in:
@@ -50,9 +50,9 @@ def hough_line_peaks(hspace, angles, dists, min_distance=9, min_angle=10,
|
||||
>>> hspace, angles, dists = hough_line(img)
|
||||
>>> hspace, angles, dists = hough_line_peaks(hspace, angles, dists)
|
||||
>>> angles
|
||||
array([-0.78101046, 0.78101046])
|
||||
array([-0.7810104642, 0.7810104642])
|
||||
>>> dists
|
||||
array([ 0.51162791, 10.74418605])
|
||||
array([ 0.511627907 , 10.7441860465])
|
||||
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user