Enum PitchProcessor.PitchEstimationAlgorithm

java.lang.Object
java.lang.Enum<PitchProcessor.PitchEstimationAlgorithm>
be.tarsos.dsp.pitch.PitchProcessor.PitchEstimationAlgorithm
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PitchProcessor.PitchEstimationAlgorithm>, java.lang.constant.Constable
Enclosing class:
PitchProcessor

public static enum PitchProcessor.PitchEstimationAlgorithm
extends java.lang.Enum<PitchProcessor.PitchEstimationAlgorithm>
A list of pitch estimation algorithms.
Author:
Joren Six
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants 
    Enum Constant Description
    AMDF
    A pitch extractor that extracts the Average Magnitude Difference (AMDF) from an audio buffer.
    DYNAMIC_WAVELET
    An implementation of a dynamic wavelet pitch detection algorithm (See DynamicWavelet), described in a paper by Eric Larson and Ross Maddox "Real-Time Time-Domain Pitch Tracking Using Wavelets
    FFT_PITCH
    Returns the frequency of the FFT-bin with most energy.
    FFT_YIN
    A YIN implementation with a faster FastYin for the implementation.
    MPM
    YIN
    See Yin for the implementation.
  • Method Summary

    Modifier and Type Method Description
    PitchDetector getDetector​(float sampleRate, int bufferSize)
    Returns a new instance of a pitch detector object based on the provided values.
    static PitchProcessor.PitchEstimationAlgorithm valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static PitchProcessor.PitchEstimationAlgorithm[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait