Making the example more explicit

This commit is contained in:
Ankit Agrawal
2013-11-29 20:42:05 +01:00
committed by Johannes Schönberger
parent 186e447c25
commit 3e1b6c2899
+2 -1
View File
@@ -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],