Uses of Class
org.anchoranalysis.feature.calculate.NamedFeatureCalculateException
Packages that use NamedFeatureCalculateException
Package
Description
Sub-feature units of calculation that can be cached.
Interfaces like
FeatureCalculator
but bound to
particular features.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 calculating energy of {org.anchoranalysis.mpp.mark.Mark}s.
Saved snapshots of energy-calculations.
Factorized form of storing the energy during an energy-minimization optimization scheme.
Non-bean classes for calculating feature-values related to
Mark
s.Source of rows in feature-tables with
FeatureSource
and derived classes.-
Uses of NamedFeatureCalculateException in org.anchoranalysis.feature.calculate
Methods in org.anchoranalysis.feature.calculate that throw NamedFeatureCalculateExceptionModifier 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 NamedFeatureCalculateException in org.anchoranalysis.feature.calculate.bound
Methods in org.anchoranalysis.feature.calculate.bound that throw NamedFeatureCalculateExceptionModifier 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) -
Uses of NamedFeatureCalculateException in org.anchoranalysis.feature.session
Methods in org.anchoranalysis.feature.session that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionSequentialSession.calculate
(T input, FeatureList<T> featuresSubset) SessionInputSequential.calculate
(FeatureList<T> features) -
Uses of NamedFeatureCalculateException in org.anchoranalysis.image.feature.calculator
Methods in org.anchoranalysis.image.feature.calculator that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionSingleTableCalculator.calculate
(FeatureInputSingleObject input) SingleTableCalculator.calculate
(FeatureInputSingleObject input, FeatureList<FeatureInputSingleObject> featuresSubset) -
Uses of NamedFeatureCalculateException in org.anchoranalysis.image.feature.calculator.merged
Methods in org.anchoranalysis.image.feature.calculator.merged that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionPairsTableCalculator.calculate
(FeatureInputPairObjects input) PairsTableCalculator.calculateMaybeSuppressErrors
(FeatureInputPairObjects input, ErrorReporter errorReporter) Calculates features for the input, optionally suppressing errors. -
Uses of NamedFeatureCalculateException in org.anchoranalysis.mpp.feature.energy.marks
Methods in org.anchoranalysis.mpp.feature.energy.marks that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionvoid
MarksWithEnergyBreakdown.add
(EnergyMemoList wrapperInd, VoxelizedMarkMemo newPxlMarkMemo, EnergyStackWithoutParameters stack) Adds a new mark to the collection and updates energies.void
MarksWithEnergyBreakdown.exchange
(EnergyMemoList wrapperInd, int index, VoxelizedMarkMemo newMark, EnergyStack energyStack) Exchanges a mark at a specific index with a new mark and updates energies.void
MarksWithEnergyBreakdown.initialize()
Initializes the energy calculations.void
MarksWithEnergyBreakdown.remove
(EnergyMemoList wrapperInd, int index, VoxelizedMarkMemo markToRemove, EnergyStackWithoutParameters stack) Removes a mark at a specific index from the collection and updates energies.void
MarksWithEnergyBreakdown.remove
(EnergyMemoList wrapperInd, VoxelizedMarkMemo markToRemove, EnergyStackWithoutParameters stack) Removes a specific mark from the collection and updates energies.void
MarksWithEnergyBreakdown.removeTwo
(EnergyMemoList wrapperInd, int index1, int index2, EnergyStackWithoutParameters energyStack) Removes two marks at specific indices from the collection and updates energies.void
MarksWithEnergyBreakdown.updateTotal
(EnergyMemoList pxlMarkMemoList, EnergyStackWithoutParameters stack) Updates the total energy based on the current state. -
Uses of NamedFeatureCalculateException in org.anchoranalysis.mpp.feature.energy.saved
Methods in org.anchoranalysis.mpp.feature.energy.saved that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionvoid
EnergySavedAll.calc
(EnergyMemoList memoList, EnergySchemeWithSharedFeatures energyScheme, EnergyStackWithoutParameters energyStack) Calculates the total energy for all items using the provided energy scheme and stack. -
Uses of NamedFeatureCalculateException in org.anchoranalysis.mpp.feature.energy.scheme
Methods in org.anchoranalysis.mpp.feature.energy.scheme that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionEnergySchemeWithSharedFeatures.totalAll
(EnergyMemoList pxlMarkMemoList, EnergyStackWithoutParameters raster) Calculates the total energy for all marks in the list.EnergySchemeWithSharedFeatures.totalIndividual
(VoxelizedMarkMemo pmm, EnergyStackWithoutParameters raster) Calculates the total energy for an individual mark. -
Uses of NamedFeatureCalculateException in org.anchoranalysis.mpp.feature.mark
Methods in org.anchoranalysis.mpp.feature.mark that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionEnergyMemoList.add
(EnergySavedIndividual energySavedInd, VoxelizedMarkMemo memo, EnergyStackWithoutParameters stack, EnergySchemeWithSharedFeatures energyScheme) Adds a new mark to the list and calculates its energy.EnergyMemoList.exchange
(EnergySavedIndividual energySavedInd, int index, VoxelizedMarkMemo newMark, EnergyStackWithoutParameters stack, EnergySchemeWithSharedFeatures energySchemeTotal) Exchanges a mark at a specific index with a new mark and recalculates energies.Constructors in org.anchoranalysis.mpp.feature.mark that throw NamedFeatureCalculateExceptionModifierConstructorDescriptionEnergyMemoList
(EnergySavedIndividual savedInd, EnergyStackWithoutParameters energyStack, MarkCollection marks, EnergySchemeWithSharedFeatures energySchemeTotal) Creates an energy memo list with the given parameters. -
Uses of NamedFeatureCalculateException in org.anchoranalysis.plugin.image.task.bean.feature.source
Methods in org.anchoranalysis.plugin.image.task.bean.feature.source that throw NamedFeatureCalculateExceptionModifier and TypeMethodDescriptionprotected ResultsVectorWithThumbnail
FromHistogram.calculateResultsForInput
(FileInput input, FeatureCalculationContext<FeatureList<FeatureInputHistogram>> context) protected ResultsVectorWithThumbnail
FromImage.calculateResultsForInput
(ProvidesStackInput input, FeatureCalculationContext<FeatureList<FeatureInputStack>> context) protected ResultsVectorWithThumbnail
FromImageMetadata.calculateResultsForInput
(ImageMetadataInput input, FeatureCalculationContext<FeatureList<FeatureInputImageMetadata>> context) protected abstract ResultsVectorWithThumbnail
SingleRowPerInput.calculateResultsForInput
(T input, FeatureCalculationContext<FeatureList<S>> context) Calculates feature-results for a particular input.