Package org.anchoranalysis.plugin.image.feature.bean.histogram.statistic

Implementations of FeatureHistogram that calculate statistics.
  • Class Summary 
    Class Description
    CoefficientOfVariation
    Calculates the coefficient of variation of all the values in the histogram.
    Count
    Counts the number of items in a histogram (posssibly in relation to a threshold: above, below etc.)
    Kurtosis
    Calculates the kurtosis of all the values in the histogram.
    Maximum
    Calculates the maximum value in a histogram.
    MeanRaisedToPower
    Calculates the mean value in a Histogram, and raises it to a power.
    Median
    Calculates the median value in a Histogram.
    Minimum
    Calculates the minimum value in a Histogram.
    Mode
    Calculates the skewness of all the values in the histogram.
    NumberDistinctValues
    Number of unique values in histogram.
    Quantile
    Calculates a specified quantile value from a Histogram.
    Range
    The range (difference in values) between two quantiles
    RatioNonMode
    Calculates the ratio of non-mode pixels to total pixels in a Histogram.
    Skewness
    Calculates the skewness of all the values in the histogram.
    StandardDeviation
    Calculates the standard deviation of values in a Histogram.
    Sum
    Calculates the sum of all values in a Histogram.
    TotalCount
    Calculates the total count of all entries in a Histogram.
    Variance
    Calculates the variance of all the values in the histogram.