Uses of Class
be.hogent.tarsos.util.histogram.CorrelationMeasure

Packages that use CorrelationMeasure
be.hogent.tarsos.util.histogram Histogram and histogram correlation classes. 
 

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

Methods in be.hogent.tarsos.util.histogram that return CorrelationMeasure
static CorrelationMeasure CorrelationMeasure.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CorrelationMeasure[] CorrelationMeasure.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in be.hogent.tarsos.util.histogram with parameters of type CorrelationMeasure
 double Histogram.correlation(Histogram otherHistogram, CorrelationMeasure correlationMeasure)
          Return the correlation of this histogram with another one.
 double Histogram.correlationWithDisplacement(int displacement, Histogram otherHistogram, CorrelationMeasure correlationMeasure)
           
 int Histogram.displacementForOptimalCorrelation(Histogram otherHistogram, CorrelationMeasure correlationMeasure)
          Returns the number of classes the other histogram needs to be displaced to get optimal correlation with this histogram.
 void Histogram.plotCorrelation(Histogram otherHistogram, CorrelationMeasure correlationMeasure, java.lang.String fileName, java.lang.String title)