pyampd icon indicating copy to clipboard operation
pyampd copied to clipboard

An improved Python implementation of the Automatic Multiscale Peak Detection algorithm

Results 3 pyampd issues
Sort by recently updated
recently updated
newest added

Hi, @ig248 , I read the original paper and compared it with your implementation, I am wondering why below code reshapes LSM matrix by `LSM[0:l_scale, :]` but not by `LSM[0:l_scale+1,...

Love the performance of this library for my time series analysis project, I would love to use it for my micropython or circuitpython projects (ESP32, Teensy and Arduino) and I...

In find_peaks_original, G is the mat containing maxima in different scales. In find_peaks, G needs to be mutiplied a weight. G = G * np.arange( N // 2, N //...