Description The attribute 'min_distance' in peak_local_max function is not working. Distance can be set at any integer and coordinates of centres remain unchanged. Way to reproduce distance = ndi.distance_transform_edt(binary_mask) coord...
Description I am trying to extract local maxima from a distance transform (made using openCV). When I run: coordinates = peak_local_max(distance_xform, min_distance=100, num_peaks=12) The following values are in coordinates: [[2775 2647]...