Uses of Class
org.anchoranalysis.overlay.Overlay
| Package | Description |
|---|---|
| org.anchoranalysis.overlay.collection |
Collections of
Overlays. |
| org.anchoranalysis.overlay.object |
An implementation of an
Overlay that draws an ObjectMask on an image. |
| org.anchoranalysis.overlay.writer |
Drawing an overlay on an image.
|
-
Uses of Overlay in org.anchoranalysis.overlay.collection
Methods in org.anchoranalysis.overlay.collection that return Overlay Modifier and Type Method Description OverlayOverlayCollection. get(int index)Access a particular element in the collection by index.OverlayColoredOverlayCollection. getOverlay(int index)Access a particularOverlayin the collection by index.Methods in org.anchoranalysis.overlay.collection that return types with arguments of type Overlay Modifier and Type Method Description Iterator<Overlay>ColoredOverlayCollection. iterator()Iterator<Overlay>OverlayCollection. iterator()Methods in org.anchoranalysis.overlay.collection with parameters of type Overlay Modifier and Type Method Description voidColoredOverlayCollection. add(Overlay overlay, RGBColor color)Append an overlay and its respective color to the end of the list..voidOverlayCollection. add(Overlay overlay)Append an overlay to the end of the list.Constructor parameters in org.anchoranalysis.overlay.collection with type arguments of type Overlay Constructor Description OverlayCollection(Stream<Overlay> stream)Creates the collection from a stream ofOverlays. -
Uses of Overlay in org.anchoranalysis.overlay.object
Subclasses of Overlay in org.anchoranalysis.overlay.object Modifier and Type Class Description classOverlayObjectMaskAn implementation ofOverlaythat draws anObjectMaskon an image. -
Uses of Overlay in org.anchoranalysis.overlay.writer
Method parameters in org.anchoranalysis.overlay.writer with type arguments of type Overlay Modifier and Type Method Description voidDrawOverlay. drawOverlays(ColoredOverlayCollection overlays, RGBStack stack, IdentifierGetter<Overlay> idGetter)Draw a collection of colored-overlays on top of aRGBStack.