diff --git a/skimage/feature/peak.py b/skimage/feature/peak.py index 8aaf9119..76f27a76 100644 --- a/skimage/feature/peak.py +++ b/skimage/feature/peak.py @@ -3,7 +3,7 @@ import scipy.ndimage as ndi from ..filters import rank_order -def peak_local_max(image, min_distance=1, threshold_abs=None, +def peak_local_max(image, min_distance=1, threshold_abs=0, threshold_rel=None, exclude_border=True, indices=True, num_peaks=np.inf, footprint=None, labels=None): """Find peaks in an image as coordinate list or boolean mask.