Uses of Class
org.anchoranalysis.spatial.box.BoundedList
Packages that use BoundedList
Package
Description
Labelling elements (object-masks or similar) with unique successive integers in a channel.
Base classes for generators that ultimately write only a bounding-box portion of a
Stack
to the filesystem.Axis-aligned bounding-boxes and related operations.
-
Uses of BoundedList in org.anchoranalysis.image.core.object.label
Methods in org.anchoranalysis.image.core.object.label with parameters of type BoundedListModifier and TypeMethodDescriptionLabelObjects.createLabelledChannel
(BoundedList<T> elements, Optional<Map<Integer, T>> mapLabels) Creates a channel that contains a unique integer (label) for each element's object-representation. -
Uses of BoundedList in org.anchoranalysis.image.io.stack.output.box
Methods in org.anchoranalysis.image.io.stack.output.box with parameters of type BoundedListModifier and TypeMethodDescriptionDrawObjectOnStackGenerator.transform
(BoundedList<ObjectMask> element) -
Uses of BoundedList in org.anchoranalysis.spatial.box
Methods in org.anchoranalysis.spatial.box that return BoundedListModifier and TypeMethodDescriptionBoundedList.addObjectsNoBoundingBoxChange
(Collection<T> elementsToAdd) Adds elements without changing the bounding-boxBoundedList.assignBoundingBox
(BoundingBox boxToAssign) Assigns a new containing bounding-box.BoundedList.assignBoundingBoxAndMap
(BoundingBox boxToAssign, UnaryOperator<T> mappingFunction) Assigns a new containing bounding-box and maps each individual element.static <T> BoundedList
<T> BoundedList.createFromList
(List<T> list, Function<T, BoundingBox> extractBoundingBox) Creates for a list, minimally fitting a bounding-box around all elementsstatic <T> BoundedList
<T> BoundedList.createSingle
(T element, Function<T, BoundingBox> extractBoundingBox) Creates for a single element using its current bounding-box.