Uses of Interface
org.android.activityminer.logic.features.Feature

Packages that use Feature
org.android.activityminer.logic.features Logic layer - Feature implementation and the extraction logic. 
 

Uses of Feature in org.android.activityminer.logic.features
 

Classes in org.android.activityminer.logic.features that implement Feature
 class AbstractFeature
          Base class for a feature, which is associated with a concrete feature type.
 class CrossCorrelationFeature<T extends Enum<T> & Dimensions>
          Implementation of an cross-correlation feature for two different dimension.
 class EnergyFeature<T extends Enum<T> & Dimensions>
          Implementation of the energy feature.
 class EntropyFeature<T extends Enum<T> & Dimensions>
          Implementation of the entropy feature.
 class MaxAccelerationAxisDifferenceFeature<T extends Enum<T> & Dimensions>
          Implementation of the feature for the maximum pairwise difference in accelerometer axis means.
 class MaxDistanceInLocationsFeature
          Implementation of the maximum difference in pairwise sample locations feature.
 class MaximumFeature<T extends Enum<T> & Dimensions>
          Implementation of a maximum feature.
 class MeanCrossingRateFeature<T extends Enum<T> & Dimensions>
          Implementation of the mean-crossing feature, which is an extended feature based on the mean feature value.
 class MeanFeature<T extends Enum<T> & Dimensions>
          Implementation of a mean feature.
 class MinimumFeature<T extends Enum<T> & Dimensions>
          Implementation of a minimum feature.
 class PeakAmplitudeFeature<T extends Enum<T> & Dimensions>
          Implementation of the amplitude of dominant (peak) frequency feature.
 class PeakFrequencyFeature<T extends Enum<T> & Dimensions>
          Implementation of the peak frequency feature.
 class RangeFeature<T extends Enum<T> & Dimensions>
          Implementation of a range feature (difference between maximum and minimum ).
 class StandardDeviationFeature<T extends Enum<T> & Dimensions>
          Implementation of the standard deviation feature, which is an extended feature based on the variance feature value.
 class VarianceFeature<T extends Enum<T> & Dimensions>
          Implementation of the variance (squared standard deviation) feature, which is an extended feature based on the mean feature value.
 

Fields in org.android.activityminer.logic.features declared as Feature
 Feature[] FeatureExtractionConfiguration.features
          The collection of features .
 

Fields in org.android.activityminer.logic.features with type parameters of type Feature
private  SparseArray<Feature> AbstractFeatureFactory.featureMap
          The type to feature map
 

Methods in org.android.activityminer.logic.features that return Feature
private  Feature[] AbstractFeatureFactory.getFeatures()
          Getter for the feature map content
 

Constructors in org.android.activityminer.logic.features with parameters of type Feature
FeatureExtractionConfiguration(Collection<Calculator<?>> sharedCalculators, Feature[] features, PreparationCalculator<T> preCalculator)
          Constructor