Uses of Class
org.anchoranalysis.feature.bean.operator.FeatureUnary
Packages that use FeatureUnary
Package
Description
Features that are sufficiently generic to work on any input-type.
Features that convert to/from physical spatial units (e.g. meters) as opposed to pixels/voxels.
Implementations and helper classes for calculating energy during an energy-minimization
optimization scheme.
Beans involving physical units for measurement.
Features that combine or convert other features in a generic way.
Arithmetic involving features.
Conditional operations involving features.
Features that compare against a range of values.
Replaces particular values if they are returned from a feature.
Converts feature values based upon a statistical measure of distribution.
Converting to/from physical units.
-
Uses of FeatureUnary in org.anchoranalysis.feature.bean.operator
Subclasses of FeatureUnary in org.anchoranalysis.feature.bean.operatorModifier and TypeClassDescriptionclass
FeatureUnaryGeneric<T extends FeatureInput>
AFeatureUnary
that accepts anyFeatureInput
irrespective of type. -
Uses of FeatureUnary in org.anchoranalysis.image.feature.bean.physical
Subclasses of FeatureUnary in org.anchoranalysis.image.feature.bean.physicalModifier and TypeClassDescriptionclass
Converts a feature from physical volume units to voxel units.class
Converts a feature value representing area in pixel units to physical area units in an isometric XY plane.class
Converts a distance feature to physical units along a specified direction.class
Converts a feature value representing volume in voxel units to physical volume units.class
FeatureConvertUnits<T extends FeatureInputWithResolution>
An abstract base class for features that convert units between physical and voxel space.class
WithResolutionBase<T extends FeatureInputWithResolution>
Base class for a feature that requires input resolution to be calculated. -
Uses of FeatureUnary in org.anchoranalysis.mpp.feature.bean.energy.element
Subclasses of FeatureUnary in org.anchoranalysis.mpp.feature.bean.energy.elementModifier and TypeClassDescriptionclass
Extracts one of the memos from the pair, and processes as aFeatureSingleMemo
-
Uses of FeatureUnary in org.anchoranalysis.plugin.image.feature.bean.physical
Subclasses of FeatureUnary in org.anchoranalysis.plugin.image.feature.bean.physicalModifier and TypeClassDescriptionclass
UnitsWithinRange<T extends FeatureInputWithResolution>
Checks if a value lies within a range defined by units (a minimum and maximum boundary) -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.beanModifier and TypeClassDescriptionclass
WithValueBase<T extends FeatureInput>
A base class for operations that use a specified constant value in combination with a feature. -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.arithmetic
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.arithmeticModifier and TypeClassDescriptionclass
AbsoluteValue<T extends FeatureInput>
A feature that calculates the absolute value of another feature's result.class
AddConstantTo<T extends FeatureInput>
A feature that adds a constant value to the result of another feature.class
ConstantToThePowerOf<T extends FeatureInput>
A feature that raises a constant value to the power of another feature's result.class
DivideByConstant<T extends FeatureInput>
A feature that divides the result of another feature by a constant value.class
InvertedMax<T extends FeatureInput>
Finds the repciprocal (multiplicate inverse), but imposes a maximum ceiling via a constant.class
MultiplyByConstant<T extends FeatureInput>
A feature that multiplies the result of another feature by a constant value.class
SubtractFrom<T extends FeatureInput>
A feature that subtracts the result of another feature from a constant value.class
ToThePowerOfConstant<T extends FeatureInput>
A feature that raises the result of another feature to the power of a constant value. -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.conditional
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.conditionalModifier and TypeClassDescriptionclass
IfCondition<T extends FeatureInput>
The result of featureCondition is compared to a threshold, and then either the underlying feature is calculated (positive case), or featureElse is (negative case) -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.range
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.rangeModifier and TypeClassDescriptionclass
CompareWithRange<T extends FeatureInput>
Compares a value with a range, returning specified constants if its inside the range, below it or above itclass
CompareWithRangeFeature<T extends FeatureInput>
LikeCompareWithRange
but uses features to calculate boundary valuesclass
IfConditionWithinRange<T extends FeatureInput>
Calculates a value if a condition lies within a certain range, otherwise returns constantsclass
IfOutsideRange<T extends FeatureInput>
Clamps a feature value if it lies outside a specified range.class
RangeCompareBase<T extends FeatureInput>
A base class for features that compare a value against a range and return different results based on the comparison.class
RangeCompareFromScalars<T extends FeatureInput>
A base class for setting the boundaries of a range using constant scalar values. -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.replace
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.replaceModifier and TypeClassDescriptionclass
ReplaceInfinity<T extends FeatureInput>
Replaces infinite values in a feature's result with a specified replacement value.class
ReplaceNaN<T extends FeatureInput>
Replaces NaN (Not a Number) values in a feature's result with a specified replacement value.class
ReplaceUnusualValue<T extends FeatureInput>
Calculates the underlying feature, but replaces the result with a constant if it is an "unusual" value. -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.statistics
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.bean.statisticsModifier and TypeClassDescriptionclass
GaussianCumulative<T extends FeatureInput>
Calculates a score between 0 and 1 based on the Cumulative Distribution Function (CDF) of a Gaussian distribution.class
StatisticalBase<T extends FeatureInput>
Calculates a score based upon the statistical mean and standard deviation.class
ZScore<T extends FeatureInput>
Calculates the Z-score of a value based on the mean and standard deviation. -
Uses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.physical
Subclasses of FeatureUnary in org.anchoranalysis.plugin.operator.feature.physicalModifier and TypeClassDescriptionclass
ConvertUnits<T extends FeatureInput>
Converts a feature value from one unit type to another.