Uses of Class
org.anchoranalysis.image.inference.segment.ReductionOutcome
| Package | Description |
|---|---|
| org.anchoranalysis.image.inference.bean.reduce |
Beans to reduce the number of results that are returned from inference, by removing overlaping
entities etc.
|
| org.anchoranalysis.image.inference.bean.segment.reduce |
Non-bean classes to reduce the number of results that are returned from inference, by removing
overlapping entities etc.
|
| org.anchoranalysis.image.inference.segment |
Non-beans pertaining to segmentation of images via model inference.
|
-
Uses of ReductionOutcome in org.anchoranalysis.image.inference.bean.reduce
Methods in org.anchoranalysis.image.inference.bean.reduce that return ReductionOutcome Modifier and Type Method Description ReductionOutcome<LabelledWithConfidence<org.anchoranalysis.image.voxel.object.ObjectMask>>ReduceElementsGreedy. reduce(List<LabelledWithConfidence<org.anchoranalysis.image.voxel.object.ObjectMask>> elements, org.anchoranalysis.spatial.box.Extent extent, ExecutionTimeRecorder executionTimeRecorder) -
Uses of ReductionOutcome in org.anchoranalysis.image.inference.bean.segment.reduce
Methods in org.anchoranalysis.image.inference.bean.segment.reduce that return ReductionOutcome Modifier and Type Method Description abstract ReductionOutcome<LabelledWithConfidence<T>>ReduceElements. reduce(List<LabelledWithConfidence<T>> elements, org.anchoranalysis.spatial.box.Extent extent, ExecutionTimeRecorder executionTimeRecorder)Reduce a list of elements (each with a confidence score and a label) to a smaller-list. -
Uses of ReductionOutcome in org.anchoranalysis.image.inference.segment
Methods in org.anchoranalysis.image.inference.segment that return ReductionOutcome Modifier and Type Method Description <S> ReductionOutcome<S>ReductionOutcome. map(UnaryOperator<Integer> mapIndex, Function<T,S> mapAdded)Creates a newReductionOutcomewhere both the retained-indices and the newly-added elements may be mapped.