mirror of
https://github.com/wassname/scikit-image.git
synced 2026-09-10 12:35:06 +08:00
Making the example more explicit
This commit is contained in:
committed by
Johannes Schönberger
parent
186e447c25
commit
3e1b6c2899
@@ -569,7 +569,8 @@ def corner_fast(image, n=12, threshold=0.15):
|
||||
[ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.],
|
||||
[ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.],
|
||||
[ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]])
|
||||
>>> corner_peaks(corner_fast(square, 9), min_distance=1)
|
||||
>>> corners = corner_peaks(corner_fast(square, 9), min_distance=1)
|
||||
>>> corners
|
||||
array([[3, 3],
|
||||
[3, 8],
|
||||
[8, 3],
|
||||
|
||||
Reference in New Issue
Block a user