Uses of Interface
org.anchoranalysis.feature.calculate.FeatureCalculationInput
Packages that use FeatureCalculationInput
Package
Description
Beans pertaining to feature-calculation.
Features that are sufficiently generic to work on any input-type.
Defines base class
FeatureResults
together with
some implementations.Sub-feature units of calculation that can be cached.
Classes to cache feature-results or parts of feature-results that occur repeatedly among features
or across calculations of the same feature.
A defined context in which one or more features are provided inputs and produce results.
Strategies to determine which child-cache (among hierarchy) to employ for a particular feature
calculation.
Strategies on whether to reuse or invalidate a feature-input's cache.
Beans pertaining to feature definition and calculation.
Features that operate on a
Histogram
.Features that operate on a
ObjectCollection
.Features that operate on a pair of
ObjectMask
s.Features that operate on a single
ObjectMask
.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.
Features that are calculated from
Dimensions
.Implementations of
FeatureHistogram
that perform
thresholding.Features from pairs of
ObjectMask
s.Features that calculate the degree of overlap between two
ObjectMask
s.Features that calculate how many other objects an
ObjectMask
directly neighbors.Implementations of
FeatureSingleObject
.Implementations of
FeatureSingleObject
that determine if an
object lies at the border of an image.Implementations of
FeatureSingleObject
that consider an
object's bounding-box.Implementations of
FeatureSingleObject
that reference a
particular Channel
in the associated EnergyStack
.Implementations of
FeatureSingleObject
that measure an object's
intensity on a corresponding Channel
.Implementations of
FeatureSingleObject
that measure an object's
gradient from corresponding Channel
s storing the
gradient.Implementations of
FeatureSingleObject
based on calculating image moments, with or without image
intensity.Implementations of
FeatureSingleObject
that implement
morphological operations.Implementations of
FeatureSingleObject
that measure the shape
of the ObjectMask
.Implementations of
FeatureSingleObject
that use SharedObjects
for calculations.Implementations of
FeatureSingleObject
that use SharedObjects
for calculations, and measure
the degree of intersection between objects.Implementations of
FeatureSingleObject
that processes an object
slice-by-slice in the z-dimension.Implementations of
FeatureSingleObject
that measures aspects of
the surface of an ObjectMask
.Beans involving
SharedObjects
.Beans involving
SharedObjects
and
ObjectCollection
.Implementations of
FeatureStack
or other features
that involve processing a Stack
.Implementations of
FeatureStack
that process an
ObjectCollection
.Implementations of
CalculationPart
as used by
features elsewhere in this package.Extracting features using OpenCV.
Features that combine or convert other features in a generic way.
Arithmetic involving features.
Conditional operations involving features.
Operations that extract a single value from a list of features.
Features that compare against a range of values.
Converts feature values based upon a statistical measure of distribution.
Converting to/from physical units.
Features related to points and fitting points to conics.
CalculationPart
related to fitting
ellipsoids to points by least-squares.A mocked feature internally using a feature-calculation.
-
Uses of FeatureCalculationInput in org.anchoranalysis.feature.bean
Methods in org.anchoranalysis.feature.bean with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionprotected abstract double
Feature.calculate
(FeatureCalculationInput<T> input) Calculates a value for some input.double
Feature.calculateCheckInitialized
(FeatureCalculationInput<T> input) Calculates the result of a feature and throws an exception if the feature has not been initialized. -
Uses of FeatureCalculationInput in org.anchoranalysis.feature.bean.operator
Methods in org.anchoranalysis.feature.bean.operator with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
Constant.calculate
(FeatureCalculationInput<T> input) double
Reference.calculate
(FeatureCalculationInput<T> input) double
Sum.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.feature.bean.results
Methods in org.anchoranalysis.feature.bean.results with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureResults.calculate
(FeatureCalculationInput<FeatureInputResults> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.feature.calculate
Methods in org.anchoranalysis.feature.calculate with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureCalculator.calculate
(Feature<T> feature, FeatureCalculationInput<T> input) Calculate the result of feature with a particular input.default ResultsVector
FeatureCalculator.calculate
(FeatureList<T> features, FeatureCalculationInput<T> input) Calculates results for a list of features with a particular input, throwing an exception if a calculation fails. -
Uses of FeatureCalculationInput in org.anchoranalysis.feature.calculate.cache
Methods in org.anchoranalysis.feature.calculate.cache with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureSymbolCalculator.calculateFeatureByIdentifier
(String resolvedIdentifier, FeatureCalculationInput<T> input) Searches for a feature that matches a particular identifier. -
Uses of FeatureCalculationInput in org.anchoranalysis.feature.session
Classes in org.anchoranalysis.feature.session that implement FeatureCalculationInputModifier and TypeClassDescriptionclass
SessionInputSequential<T extends FeatureInput>
A feature-input that will be used in aSequentialSession
-
Uses of FeatureCalculationInput in org.anchoranalysis.feature.session.cache.finder
Methods in org.anchoranalysis.feature.session.cache.finder that return types with arguments of type FeatureCalculationInputModifier and TypeMethodDescriptionCacheSupplier.get()
Gets the cache.CacheTransferSource.getInputIfPresent
(T input) Gets correspondingFeatureCalculationInput
for aninput
, if present, but doesn't create any new entry if it's absent. -
Uses of FeatureCalculationInput in org.anchoranalysis.feature.session.replace
Methods in org.anchoranalysis.feature.session.replace that return FeatureCalculationInputModifier and TypeMethodDescriptionAlwaysNew.createOrReuse
(T input) CacheAndReuseStrategy.createOrReuse
(T input) ReplaceStrategy.createOrReuse
(T input) Find or create aFeatureCalculationInput
to associate withinput
.ReuseSingletonStrategy.createOrReuse
(T input) Methods in org.anchoranalysis.feature.session.replace that return types with arguments of type FeatureCalculationInputModifier and TypeMethodDescriptionCacheAndReuseStrategy.getCache()
The cache mapping a particular input to a correspondingFeatureCalculationInput
. -
Uses of FeatureCalculationInput in org.anchoranalysis.image.feature.bean
Methods in org.anchoranalysis.image.feature.bean with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureImageMetadata.calculate
(FeatureCalculationInput<FeatureInputImageMetadata> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.image.feature.bean.histogram
Methods in org.anchoranalysis.image.feature.bean.histogram with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureHistogramStatistic.calculate
(FeatureCalculationInput<FeatureInputHistogram> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.image.feature.bean.object.collection
Methods in org.anchoranalysis.image.feature.bean.object.collection with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureObjectCollection.calculate
(FeatureCalculationInput<FeatureInputObjectCollection> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.image.feature.bean.object.pair
Methods in org.anchoranalysis.image.feature.bean.object.pair with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
First.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) double
Merged.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) double
Minimum.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) double
RatioFirstToSecond.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) double
Second.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) double
SubtractSecondFromFirst.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) protected double
FeatureDeriveFromPair.valueFromFirst
(FeatureCalculationInput<FeatureInputPairObjects> input) Calculates the feature value for the first object in the pair.protected double
FeatureDeriveFromPair.valueFromMerged
(FeatureCalculationInput<FeatureInputPairObjects> input) Calculates the feature value for the merged object from the pair.protected double
FeatureDeriveFromPair.valueFromSecond
(FeatureCalculationInput<FeatureInputPairObjects> input) Calculates the feature value for the second object in the pair. -
Uses of FeatureCalculationInput in org.anchoranalysis.image.feature.bean.object.single
Methods in org.anchoranalysis.image.feature.bean.object.single with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
CenterOfGravity.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
NumberVoxels.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.image.feature.bean.physical
Methods in org.anchoranalysis.image.feature.bean.physical with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionfinal double
WithResolutionBase.calculate
(FeatureCalculationInput<T> input) Calculates the feature value, handling cases where resolution might be missing. -
Uses of FeatureCalculationInput in org.anchoranalysis.mpp.feature.bean.energy.element
Methods in org.anchoranalysis.mpp.feature.bean.energy.element with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
AsSingle.calculate
(FeatureCalculationInput<FeatureInputPairMemo> input) abstract double
FeatureSingleMemo.calculate
(FeatureCalculationInput<FeatureInputSingleMemo> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.dimensions
Methods in org.anchoranalysis.plugin.image.feature.bean.dimensions with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FromDimensionsBase.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.histogram.threshold
Methods in org.anchoranalysis.plugin.image.feature.bean.histogram.threshold with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
LevelFromHistogram.calculate
(FeatureCalculationInput<FeatureInputHistogram> input) double
ThresholdHistogram.calculate
(FeatureCalculationInput<FeatureInputHistogram> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.pair
Methods in org.anchoranalysis.plugin.image.feature.bean.object.pair with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
Intersection.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.pair.overlap
Methods in org.anchoranalysis.plugin.image.feature.bean.object.pair.overlap with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
CostOverlapWithinMidpointDistance.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) double
OverlapRelative.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.pair.touching
Methods in org.anchoranalysis.plugin.image.feature.bean.object.pair.touching with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
TouchingVoxels.calculate
(FeatureCalculationInput<FeatureInputPairObjects> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
ArbitraryInsidePoint.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) protected double
OutlineKernelBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.border
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.border with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
AtBorderBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.boundingbox
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.boundingbox with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
BoundingBoxAlongAxisBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
BoundingBoxNumberVoxels.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.energy
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.energy with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
SpecificEnergyChannelBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.intensity
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.intensity with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FeatureEnergyChannel.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) protected abstract double
FeatureEnergyChannel.calculateForChannel
(FeatureCalculationInput<FeatureInputSingleObject> input, Channel channel) Calculates the feature value for a specific channel in the energy stack.protected double
Intensity.calculateForChannel
(FeatureCalculationInput<FeatureInputSingleObject> input, Channel channel) protected double
IntensityMeanMaxSlice.calculateForChannel
(FeatureCalculationInput<FeatureInputSingleObject> input, Channel channel) Calculates the maximum mean intensity across all slices of the object in the given channel.protected double
IntensityMeanShellBase.calculateForChannel
(FeatureCalculationInput<FeatureInputSingleObject> input, Channel channel) protected double
TextureScore.calculateForChannel
(FeatureCalculationInput<FeatureInputSingleObject> input, Channel channel) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.intensity.gradient
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.intensity.gradient with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
GradientMagnitude.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
GradientMeanForAxis.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.moments
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.moments with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
ImageMomentsBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.morphological
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.morphological with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
DerivedObject.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
NumberRemovedVoxelsAfterClosing.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.shape
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.shape with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
ObjectRadiusStandardDeviation.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
ShapeRegularityCenterSlice.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
ShapeRegularityMaximumIntensityProjection.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.slice
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.slice with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
MaximumNumberContourVoxelsOnSlice.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
MaximumNumberVoxelsOnSlice.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.object.single.surface
Methods in org.anchoranalysis.plugin.image.feature.bean.object.single.surface with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
SurfaceNumberVoxelsBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.stack.intensity
Methods in org.anchoranalysis.plugin.image.feature.bean.stack.intensity with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
DataTypeMaxIntensity.calculate
(FeatureCalculationInput<T> input) protected double
Intensity.calculate
(FeatureCalculationInput<FeatureInputStack> input) protected double
NumberChannels.calculate
(FeatureCalculationInput<FeatureInputStack> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.bean.stack.object
Methods in org.anchoranalysis.plugin.image.feature.bean.stack.object with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
AsObjectMask.calculate
(FeatureCalculationInput<FeatureInputStack> input) double
QuantileAcrossConnectedComponents.calculate
(FeatureCalculationInput<FeatureInputStack> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.image.feature.object.calculation.delegate
Methods in org.anchoranalysis.plugin.image.feature.object.calculation.delegate with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionstatic <S extends FeatureInput,
T extends FeatureInput, U>
doubleCalculateInputFromDelegateOption.calc
(FeatureCalculationInput<T> input, CalculationPart<U, T> delegate, Function<ResolvedPart<U, T>, CalculateInputFromDelegateOption<S, T, U>> createFromDelegate, Feature<S> feature, ChildCacheName cacheName, double emptyValue) Calculates a feature using a cached-calculation as delegate. -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.opencv.bean.feature
Methods in org.anchoranalysis.plugin.opencv.bean.feature with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionprotected double
HOGFeature.calculate
(FeatureCalculationInput<FeatureInputStack> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.bean
Methods in org.anchoranalysis.plugin.operator.feature.bean with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
FromDictionary.calculate
(FeatureCalculationInput<T> input) double
WithValueBase.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.bean.arithmetic
Methods in org.anchoranalysis.plugin.operator.feature.bean.arithmetic with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
AbsoluteValue.calculate
(FeatureCalculationInput<T> input) double
Divide.calculate
(FeatureCalculationInput<T> input) double
InvertedMax.calculate
(FeatureCalculationInput<T> input) double
Multiply.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.bean.conditional
Methods in org.anchoranalysis.plugin.operator.feature.bean.conditional with parameters of type FeatureCalculationInput -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.bean.list
Methods in org.anchoranalysis.plugin.operator.feature.bean.list with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
Maximum.calculate
(FeatureCalculationInput<T> input) double
Mean.calculate
(FeatureCalculationInput<T> input) double
MeanGeometric.calculate
(FeatureCalculationInput<T> input) double
Minimum.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.bean.range
Methods in org.anchoranalysis.plugin.operator.feature.bean.range with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionprotected double
CompareWithRangeFeature.boundaryMax
(FeatureCalculationInput<T> input) protected abstract double
RangeCompareBase.boundaryMax
(FeatureCalculationInput<T> input) Defines the maximum accepted value in the range.protected double
RangeCompareFromScalars.boundaryMax
(FeatureCalculationInput<T> input) protected double
CompareWithRangeFeature.boundaryMin
(FeatureCalculationInput<T> input) protected abstract double
RangeCompareBase.boundaryMin
(FeatureCalculationInput<T> input) Defines the minimum accepted value in the range.protected double
RangeCompareFromScalars.boundaryMin
(FeatureCalculationInput<T> input) double
NormalizedRange.calculate
(FeatureCalculationInput<T> input) double
Range.calculate
(FeatureCalculationInput<T> input) double
RangeCompareBase.calculate
(FeatureCalculationInput<T> input) protected double
CompareWithRange.withinRangeValue
(double valWithinRange, FeatureCalculationInput<T> input) protected double
CompareWithRangeFeature.withinRangeValue
(double valWithinRange, FeatureCalculationInput<T> input) protected double
IfConditionWithinRange.withinRangeValue
(double valWithinRange, FeatureCalculationInput<T> input) protected double
IfOutsideRange.withinRangeValue
(double valWithinRange, FeatureCalculationInput<T> input) protected abstract double
RangeCompareBase.withinRangeValue
(double valWithinRange, FeatureCalculationInput<T> input) Calculates the value to return if the input is within the range. -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.bean.statistics
Methods in org.anchoranalysis.plugin.operator.feature.bean.statistics with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
StatisticalBase.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.operator.feature.physical
Methods in org.anchoranalysis.plugin.operator.feature.physical with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionprotected double
ConvertUnits.calculate
(FeatureCalculationInput<T> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.points.bean.feature
Methods in org.anchoranalysis.plugin.points.bean.feature with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptiondouble
EllipsoidBase.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) double
Ellipticity.calculate
(FeatureCalculationInput<FeatureInputSingleObject> input) -
Uses of FeatureCalculationInput in org.anchoranalysis.plugin.points.calculate.ellipsoid
Methods in org.anchoranalysis.plugin.points.calculate.ellipsoid with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionstatic Ellipsoid
CalculateEllipsoidLeastSquares.of
(FeatureCalculationInput<FeatureInputSingleObject> input, boolean suppressZCovariance) Calculates anEllipsoid
for the given input. -
Uses of FeatureCalculationInput in org.anchoranalysis.test.feature.plugins.mockfeature
Methods in org.anchoranalysis.test.feature.plugins.mockfeature with parameters of type FeatureCalculationInputModifier and TypeMethodDescriptionprotected double
MockFeatureWithCalculation.calculate
(FeatureCalculationInput<FeatureInput> input)