Interface IPeakDetector

  • All Known Implementing Classes:
    PeakDetection

    public interface IPeakDetector
    Interface for classes that find local maxima in arrays
    Author:
    Dustin Kempton, Data Mining Lab, Georgia State University
    • Method Detail

      • findPeaks

        List<Integer> findPeaks​(double[] data)
        Method for finding peaks, or local mixima, in the input array.
        Parameters:
        data - The input array to find local maxima in.
        Returns:
        List of index locations of the found local maxima. The list may or may not be sorted by the height of the peaks, depending on the method implements this interface.