Findpeaks Versions Save

The detection of peaks and valleys in a 1d-vector or 2d-array (image)

2.6.3

2 months ago
  • code refactoring and cleaning by @arvinnick Thank you for the contribution!

2.6.2

2 months ago
  • Fix for Issue #31
  • Set scipy to version 1.11.4 because peakdetect breaks as it does not support importing fft and ifft directly from scipy.

2.6.1

5 months ago
  • issue #29
  • added interpolate_line1d, interpolate_line2d and interpolate_nans into imports during initialization

2.6.0

6 months ago
  • fix for detection of valleys again
  • fix for lee_sigma for parallel job
  • catch error for plot persistence if not exist
  • set the default limit back to None
  • Fix for issue #27

This version can change the detection of peaks/valleys slightly in comparison to previous versions because it contains improved peak/valley detection fixes and some bug fixes.

2.5.5

6 months ago
  • Fixing bug when peaks are identical in height when using 2D array data.
  • Created some new functionality in plot that allows scattering the results on top of the image

2.5.4

7 months ago
  • added parameter delta to params for flexibility
from findpeaks import findpeaks
fp = findpeaks(method='peakdetect', params={'delta': 1})

2.5.3

7 months ago
  • Fix for caerus method cu parameter

2.5.2

8 months ago
  • update setup file with joblib

2.5.1

10 months ago
  • add limit as parameter for plotting

2.5.0

10 months ago
  • Denoise filter *lee sigma" is added for (among others) SAR images by @carolinegoehner #20.
  • The parameters window and cu need to specified in params={'window': 7, 'cu': 1}

See the documentation pages for the details!

Thank you for this awesome contribution @carolinegoehner