I’m very new to Julia and I’m trying to find a go-to peak-finding implementation in one of the major Julia packages, but I can’t seem to find it. It seems there is a findlocalmaxima
function in the Images package, but the documentation is sparse and doesn’t mention any way to filter peaks (prominence, distance from neighboring peaks, etc.). And it looks like a pull request stalled for this functionality in DSP #369?
I want something with parameters like these (similar to SciPy’s
- minimum horizontal distance
- peak prominence
- peak width
- minimum peak threshold
What is the simplest package that implements this in Julia?