Uses of Class
org.anchoranalysis.feature.results.ResultsVector
Packages that use ResultsVector
Package
Description
Sub-feature units of calculation that can be cached.
Interfaces like
FeatureCalculator
but bound to
particular features.Writes feature-calculation results in different formats, also grouped results.
Results from one or more feature calculations.
A defined context in which one or more features are provided inputs and produce results.
Implementations of
FeatureCalculatorMulti
related to images, especially to create tables of feature-calculations.A particular implementation of
FeatureCalculatorMulti
for feature-calculations based
upon pairs of image-objects.Non-bean classes pertaining to
Feature
s as used in tasks.Testing utilities and fixtures with no greater downstream dependency than anchor-feature.
Testing utilities and fixtures with no greater downstream dependency than
anchor-image-feature or anchor-mpp.
-
Uses of ResultsVector in org.anchoranalysis.feature.calculate
Methods in org.anchoranalysis.feature.calculate that return ResultsVectorModifier and TypeMethodDescriptionFeatureCalculationInput.calculate
(FeatureList<T> features) Calculates the results of several features using this 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 ResultsVector in org.anchoranalysis.feature.calculate.bound
Methods in org.anchoranalysis.feature.calculate.bound that return ResultsVectorModifier and TypeMethodDescriptionCalculate the results of the features with a particular input.default ResultsVector
FeatureCalculatorMulti.calculate
(T input, ErrorReporter errorReporter, boolean suppressErrors) Calculates the results for aninput
, either callingFeatureCalculatorMulti.calculate(T)
orFeatureCalculatorMulti.calculateSuppressErrors(T, org.anchoranalysis.core.log.error.ErrorReporter)
depending on a flag.FeatureCalculatorMulti.calculate
(T input, FeatureList<T> featuresSubset) Calculates the results of a subset of the features with a particular input.FeatureCalculatorMultiChangeInput.calculate
(T input, FeatureList<T> featuresSubset) FeatureCalculatorMulti.calculateSuppressErrors
(T input, ErrorReporter errorReporter) Calculates the results for aninput
recording the error to anErrorReporter
if anything goes wrong, but throwing no exception.FeatureCalculatorMultiChangeInput.calculateSuppressErrors
(T input, ErrorReporter errorReporter) -
Uses of ResultsVector in org.anchoranalysis.feature.io.results
Methods in org.anchoranalysis.feature.io.results that return ResultsVectorConstructors in org.anchoranalysis.feature.io.results with parameters of type ResultsVectorModifierConstructorDescriptionLabelledResultsVector
(Optional<MultiName> group, ResultsVector results) Creates with no additional labels other than a group.LabelledResultsVector
(RowLabels labels, ResultsVector results) Creates a newLabelledResultsVector
instance.LabelledResultsVector
(ResultsVector results) Creates with no additional labels, and no group. -
Uses of ResultsVector in org.anchoranalysis.feature.results
Methods in org.anchoranalysis.feature.results that return ResultsVectorModifier and TypeMethodDescriptionResultsVectorList.get
(int index) Gets aResultsVector
at a particular position i nthe list.Methods in org.anchoranalysis.feature.results that return types with arguments of type ResultsVectorModifier and TypeMethodDescriptionResultsVectorList.iterator()
ResultsVectorList.stream()
A stream ofResultsVector
s.Methods in org.anchoranalysis.feature.results with parameters of type ResultsVectorModifier and TypeMethodDescriptionvoid
ResultsVectorList.add
(ResultsVector results) Add aResultsVector
to the list in the final position.void
ResultsVector.copyFrom
(int index, int length, ResultsVector source, int sourceIndex) Copies a contiguous subset of results from another vector.void
ResultsVector.set
(int startIndex, ResultsVector resultsToAssign) Assigns many results, starting at a particular position, and incrementing thereafter.Constructors in org.anchoranalysis.feature.results with parameters of type ResultsVectorModifierConstructorDescriptionResultsVectorList
(ResultsVector results) Creates with the list containing a single item. -
Uses of ResultsVector in org.anchoranalysis.feature.session
Methods in org.anchoranalysis.feature.session that return ResultsVectorModifier and TypeMethodDescriptionSequentialSession.calculate
(T input, FeatureList<T> featuresSubset) SessionInputSequential.calculate
(FeatureList<T> features) SequentialSession.calculateSuppressErrors
(T input, ErrorReporter errorReporter) Calculates the results for the next input in the session, reporting any exceptions into anErrorReporter
. -
Uses of ResultsVector in org.anchoranalysis.image.feature.calculator
Methods in org.anchoranalysis.image.feature.calculator that return ResultsVectorModifier and TypeMethodDescriptionSingleTableCalculator.calculate
(FeatureInputSingleObject input) SingleTableCalculator.calculate
(FeatureInputSingleObject input, FeatureList<FeatureInputSingleObject> featuresSubset) SingleTableCalculator.calculateSuppressErrors
(FeatureInputSingleObject input, ErrorReporter errorReporter) -
Uses of ResultsVector in org.anchoranalysis.image.feature.calculator.merged
Methods in org.anchoranalysis.image.feature.calculator.merged that return ResultsVectorModifier and TypeMethodDescriptionPairsTableCalculator.calculate
(FeatureInputPairObjects input) PairsTableCalculator.calculate
(FeatureInputPairObjects input, FeatureList<FeatureInputPairObjects> featuresSubset) PairsTableCalculator.calculateMaybeSuppressErrors
(FeatureInputPairObjects input, ErrorReporter errorReporter) Calculates features for the input, optionally suppressing errors.PairsTableCalculator.calculateSuppressErrors
(FeatureInputPairObjects input, ErrorReporter errorReporter) -
Uses of ResultsVector in org.anchoranalysis.plugin.image.task.feature
Methods in org.anchoranalysis.plugin.image.task.feature that return types with arguments of type ResultsVectorModifier and TypeMethodDescriptionResultsVectorWithThumbnail.getResultsVector()
Supplier for theResultsVector
.Constructor parameters in org.anchoranalysis.plugin.image.task.feature with type arguments of type ResultsVectorModifierConstructorDescriptionCreates a new instance with a results vector and no thumbnail.ResultsVectorWithThumbnail
(CheckedSupplier<ResultsVector, OperationFailedException> resultsVector, CheckedSupplier<Optional<DisplayStack>, OperationFailedException> thumbnail) Creates a newResultsVectorWithThumbnail
instance. -
Uses of ResultsVector in org.anchoranalysis.test.feature
Methods in org.anchoranalysis.test.feature with parameters of type ResultsVectorModifier and TypeMethodDescriptionstatic void
ConstantsInListFixture.checkResultsVector
(ResultsVector vector) Checks that a result-vector has the results we expect from the feature-list associated with this fixture. -
Uses of ResultsVector in org.anchoranalysis.test.feature.plugins
Methods in org.anchoranalysis.test.feature.plugins with parameters of type ResultsVectorModifier and TypeMethodDescriptionstatic void
ResultsVectorTestUtilities.assertCalc
(ResultsVector results, Object... expectedVals) Asserts that a ResultsVector matches the expected values within a small epsilon.