Replace deprecated boolean subtraction operator

Fixes #109 by changing deprecated boolean subtraction operator ( minus sign, '-' ) to '^'.
This commit is contained in:
William P 2019-04-23 11:52:00 -04:00
parent 7f53f2ab68
commit 02345911ca

View file

@ -100,8 +100,8 @@ def get_2D_peaks(arr2D, plot=False, amp_min=DEFAULT_AMP_MIN):
eroded_background = binary_erosion(background, structure=neighborhood, eroded_background = binary_erosion(background, structure=neighborhood,
border_value=1) border_value=1)
# Boolean mask of arr2D with True at peaks # Boolean mask of arr2D with True at peaks (Fixed deprecated boolean operator by changing '-' to '^')
detected_peaks = local_max - eroded_background detected_peaks = local_max ^ eroded_background
# extract peaks # extract peaks
amps = arr2D[detected_peaks] amps = arr2D[detected_peaks]