Package | Description |
---|---|
icy.canvas |
Contains base Icy canvas and related classes
|
icy.gui.main |
Contains graphic components and objects for the main interface
|
icy.painter |
Contains Icy Overlay / Painter structure definition and basics Overlay helper classes
|
icy.roi |
Contains all ROI (Region Of Interest) related classes and tools
|
icy.sequence |
Contains Icy Sequence structure definition and associated objects / tools.
|
plugins.kernel.roi.roi2d |
Contains all 2D ROI classes included in the kernel
|
plugins.kernel.roi.roi3d |
Contains all 3D ROI classes included in the kernel
|
plugins.kernel.roi.roi4d |
Contains all 4D ROI classes included in the kernel
|
plugins.kernel.roi.roi5d |
Contains all 5D ROI classes included in the kernel
|
plugins.kernel.roi.tool | |
plugins.tutorial.painter | |
plugins.tutorial.roi | |
plugins.tutorial.training | |
plugins.tutorial.vtk |
Modifier and Type | Method and Description |
---|---|
Painter |
Layer.getPainter()
Deprecated.
Use
Layer.getOverlay() instead. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Painter> |
IcyCanvas.getLayersPainter()
Deprecated.
Use
IcyCanvas.getOverlays() instead. |
Modifier and Type | Method and Description |
---|---|
void |
IcyCanvas.addLayer(Painter painter)
Deprecated.
Use
IcyCanvas.addLayer(Overlay) instead. |
Layer |
IcyCanvas.getLayer(Painter painter)
Deprecated.
Use
IcyCanvas.getLayer(Overlay) instead. |
boolean |
IcyCanvas.hasLayer(Painter painter)
Deprecated.
Use
IcyCanvas.hasLayer(Overlay) instead. |
void |
IcyCanvas.removeLayer(Painter painter)
Deprecated.
Use
IcyCanvas.removeLayer(Overlay) instead. |
Constructor and Description |
---|
Layer(Painter painter)
Deprecated.
Use
Layer.Layer(Overlay) instead. |
Layer(Painter painter,
java.lang.String name)
Deprecated.
Use
Layer.Layer(Overlay) instead. |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Painter> |
MainInterfaceGui.getPainters()
Deprecated.
|
java.util.ArrayList<Painter> |
MainInterfaceBatch.getPainters()
Deprecated.
|
java.util.ArrayList<Painter> |
MainInterface.getPainters()
Deprecated.
Use
MainInterface.getOverlays() instead. |
Modifier and Type | Method and Description |
---|---|
Sequence |
MainInterfaceGui.getFirstSequenceContaining(Painter painter)
Deprecated.
|
Sequence |
MainInterfaceBatch.getFirstSequenceContaining(Painter painter)
Deprecated.
|
Sequence |
MainInterface.getFirstSequenceContaining(Painter painter)
Deprecated.
Use
MainInterface.getFirstSequenceContaining(Overlay) instead. |
Sequence |
MainInterfaceGui.getFirstSequencesContaining(Painter painter)
Deprecated.
|
Sequence |
MainInterfaceBatch.getFirstSequencesContaining(Painter painter)
Deprecated.
|
Sequence |
MainInterface.getFirstSequencesContaining(Painter painter)
Deprecated.
|
Viewer |
MainInterfaceGui.getFirstViewerContaining(Painter painter)
Deprecated.
|
Viewer |
MainInterfaceBatch.getFirstViewerContaining(Painter painter)
Deprecated.
|
Viewer |
MainInterface.getFirstViewerContaining(Painter painter)
Deprecated.
use
MainInterface.getFirstViewerContaining(Overlay) instead. |
ROI |
MainInterfaceGui.getROI(Painter painter)
Deprecated.
|
ROI |
MainInterfaceBatch.getROI(Painter painter)
Deprecated.
|
ROI |
MainInterface.getROI(Painter painter)
Deprecated.
Use
MainInterface.getROI(Overlay) instead. |
java.util.ArrayList<Sequence> |
MainInterfaceGui.getSequencesContaining(Painter painter)
Deprecated.
|
java.util.ArrayList<Sequence> |
MainInterfaceBatch.getSequencesContaining(Painter painter)
Deprecated.
|
java.util.ArrayList<Sequence> |
MainInterface.getSequencesContaining(Painter painter)
Deprecated.
Use
MainInterface.getSequencesContaining(Overlay) instead. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPainter
Deprecated.
Uses the
Overlay class instead. |
class |
Anchor2D
Anchor2D class, used for 2D point control.
|
class |
Anchor3D
Anchor3D class, used for 3D point control.
|
class |
ImageOverlay
Simple image overlay class.
|
class |
LineAnchor2D
Anchor for line type shape.
|
class |
Overlay
Overlay class.
|
class |
OverlayWrapper
This class is used to provide backward compatibility with the
Painter interface. |
class |
PainterAdapter
Deprecated.
Use
Overlay class instead. |
class |
PathAnchor2D
Anchor for path type shape.
|
class |
RectAnchor2D
Anchor for rectangular shape.
|
Modifier and Type | Method and Description |
---|---|
Painter |
OverlayWrapper.getPainter() |
Painter |
PainterEvent.getSource()
Deprecated.
|
Constructor and Description |
---|
OverlayWrapper(Painter painter,
java.lang.String name) |
PainterEvent(Painter source,
PainterEvent.PainterEventType type)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
ROI.ROIPainter
Abstract basic class for ROI overlay
|
class |
ROI2D.ROI2DPainter |
class |
ROI3D.ROI3DPainter |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Painter> |
Sequence.getPainters()
Deprecated.
Use
Sequence.getOverlays() instead. |
java.util.List<Painter> |
Sequence.getPainters(java.lang.Class<? extends Painter> painterClass)
Deprecated.
Use
Sequence.getOverlays(Class) instead. |
java.util.HashSet<Painter> |
Sequence.getPainterSet()
Deprecated.
Use
Sequence.getOverlaySet() instead. |
Modifier and Type | Method and Description |
---|---|
boolean |
Sequence.addPainter(Painter painter)
Deprecated.
Use
Sequence.addOverlay(Overlay) instead. |
boolean |
Sequence.contains(Painter painter)
Deprecated.
Use
Sequence.contains(Overlay) instead. |
void |
Sequence.painterChanged(Painter painter)
Deprecated.
Use
Sequence.overlayChanged(Overlay) instead. |
boolean |
Sequence.removePainter(Painter painter)
Deprecated.
Use
Sequence.removeOverlay(Overlay) instead. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Painter> |
Sequence.getPainters(java.lang.Class<? extends Painter> painterClass)
Deprecated.
Use
Sequence.getOverlays(Class) instead. |
Modifier and Type | Class and Description |
---|---|
class |
ROI2DArea.ROI2DAreaPainter |
class |
ROI2DLine.ROI2DLinePainter |
class |
ROI2DPoint.ROI2DPointPainter |
class |
ROI2DShape.ROI2DShapePainter |
Modifier and Type | Class and Description |
---|---|
class |
ROI3DArea.ROI3DAreaPainter |
class |
ROI3DLine.ROI3DLinePainter |
class |
ROI3DPoint.ROI3DPointPainter |
class |
ROI3DPolyLine.ROI3DPolyLinePainter |
class |
ROI3DShape.ROI3DShapePainter |
class |
ROI3DStack.ROI3DStackPainter |
class |
ROI3DStackShape.ROI3DStackShapePainter |
Modifier and Type | Class and Description |
---|---|
class |
ROI4DStack.ROI4DStackPainter |
Modifier and Type | Class and Description |
---|---|
class |
ROI5DStack.ROI5DStackPainter |
Modifier and Type | Class and Description |
---|---|
class |
ROILineCutter.ROILineCutterPainter |
Modifier and Type | Class and Description |
---|---|
class |
AnimatedOverlay
Fancy mark to demonstrate the capabilities of painters.
|
Modifier and Type | Class and Description |
---|---|
class |
IntensityOverRoiPainter
This painter draws an intensity profile of the image over a polyline
|
Modifier and Type | Class and Description |
---|---|
class |
OverlayPlugin1.SimpleCrossOverlay |
Modifier and Type | Class and Description |
---|---|
class |
VtkAnimatedEarthPainter |
class |
VtkComplexeSplinePainter |
class |
VtkCubePainter
This plugin shows how use VTK to render a simple cube mesh as a 3D painter
|
class |
VtkLabelPainter |
class |
VtkSpherePainter |
class |
VtkText2DPainter
This class shows how to use VTK to render a simple 2D text as 3D painter
|
class |
VtkText3DPainter |