Uses of Class
be.hogent.tarsos.util.KernelDensityEstimate

Packages that use KernelDensityEstimate
be.hogent.tarsos.util Utility classes for string handling, logging, configuration, some DSP tasks. 
be.hogent.tarsos.util.histogram Histogram and histogram correlation classes. 
 

Uses of KernelDensityEstimate in be.hogent.tarsos.util
 

Methods in be.hogent.tarsos.util with parameters of type KernelDensityEstimate
 void KernelDensityEstimate.add(KernelDensityEstimate other)
          Adds a KDE to this accumulator
 void SimplePlot.addData(int set, KernelDensityEstimate kde)
           
 double KernelDensityEstimate.correlation(KernelDensityEstimate other, int positionsToShiftOther)
           Calculate a correlation with another KernelDensityEstimate.
 void KernelDensityEstimate.max(KernelDensityEstimate other)
          Takes the maximum of the value in the accumulator for two kde's.
 int KernelDensityEstimate.shiftForOptimalCorrelation(KernelDensityEstimate other)
          Calculates how much the other KernelDensityEstimate needs to be shifted for optimal correlation.
 

Uses of KernelDensityEstimate in be.hogent.tarsos.util.histogram
 

Methods in be.hogent.tarsos.util.histogram that return KernelDensityEstimate
static KernelDensityEstimate HistogramFactory.createPichClassKDE(java.util.List<Annotation> annotations, double width)
          Creates a pitch class KernelDensityEstimate for a list of annotations.
static KernelDensityEstimate HistogramFactory.createPichClassKDE(java.util.List<Annotation> annotations, double width, double windowDuration)
          Creates a pitch class KernelDensityEstimate for a list of pitches defined by a Scala file.
static KernelDensityEstimate HistogramFactory.createPichClassKDE(ScalaFile scalaFile, double width)
          Creates a pitch class KernelDensityEstimate for a list of pitches defined by a Scala file.
 

Methods in be.hogent.tarsos.util.histogram with parameters of type KernelDensityEstimate
static PitchClassHistogram HistogramFactory.createPitchClassHistogram(KernelDensityEstimate kde)
          Creates a pitch class histogram directly from a list of annotations (without kernels).