mirror of
https://github.com/correl/dejavu.git
synced 2024-11-23 11:09:52 +00:00
Merge pull request #193 from WillPastor/bitwise-fix
Replace deprecated boolean subtraction operator
This commit is contained in:
commit
6fe89c577e
1 changed files with 2 additions and 2 deletions
|
@ -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]
|
||||||
|
|
Loading…
Reference in a new issue