Fix confused parameters in doc string of peak_local_max

This commit is contained in:
Johannes Schönberger
2012-12-09 17:39:15 +01:00
parent 95f7177708
commit 81c01eac0f
+2 -2
View File
@@ -50,8 +50,8 @@ def peak_local_max(image, min_distance=10, threshold_abs=0, threshold_rel=0.1,
Returns
-------
output : (N, 2) array or ndarray of bools
If `exclude_border = True` : (row, column) coordinates of peaks.
If `exclude_border = False` : Boolean array shaped like `image`,
If `indices = True` : (row, column) coordinates of peaks.
If `indices = False` : Boolean array shaped like `image`,
with peaks represented by True values.
Notes