Package | Description |
---|---|
icy.imagej |
Contains all ImageJ related stuff (wrapper, integration...)
|
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.tool |
Modifier and Type | Method and Description |
---|---|
static java.util.List<ROI2D> |
ImageJUtil.convertToIcyRoi(ij.gui.Roi roi)
Convert the specified ImageJ
Roi object to Icy ROI . |
Modifier and Type | Method and Description |
---|---|
static ij.gui.Roi |
ImageJUtil.convertToImageJRoi(ROI2D roi)
Convert the specified Icy
ROI object to ImageJ Roi . |
Modifier and Type | Method and Description |
---|---|
static ROI2D[] |
ROI2D.getROI2DList(ROI[] rois)
Deprecated.
Use
getROI2DList(List) instead. |
static ROI2D |
ROI2D.merge(ROI2D[] rois,
ShapeUtil.ShapeOperation operation)
Deprecated.
|
static ROI2D |
ROI2D.substract(ROI2D roi1,
ROI2D roi2)
Deprecated.
Use
ROI.getSubtraction(ROI) instead. |
static ROI2D |
ROI2D.subtract(ROI2D roi1,
ROI2D roi2)
Deprecated.
Use
ROI.getSubtraction(ROI) instead. |
Modifier and Type | Method and Description |
---|---|
static java.util.ArrayList<ROI2D> |
ROI2D.getROI2DList(java.util.ArrayList<ROI> rois)
Deprecated.
Use
getROI2DList(List) instead. |
static java.util.List<ROI2D> |
ROI2D.getROI2DList(java.util.List<ROI> rois)
Return ROI2D of ROI list.
|
Modifier and Type | Method and Description |
---|---|
static ROI |
ROIUtil.convertToStack(ROI2D roi,
int zMin,
int zMax)
Converts the specified 2D ROI to 3D Stack ROI (ROI3DStack) by stacking it along the Z axis given zMin and zMax
(inclusive) parameters.
|
static BooleanMask2D |
BooleanMask2D.getExclusiveUnionBooleanMask(ROI2D[] rois)
Deprecated.
Use
ROIUtil.getExclusiveUnion(List) instead. |
static BooleanMask2D |
BooleanMask2D.getIntersectBooleanMask(ROI2D[] rois)
Deprecated.
Use
ROIUtil.getIntersection(List) instead. |
static java.awt.geom.Point2D |
ROIUtil.getMassCenter(ROI2D roi)
Deprecated.
Use
ROIMassCenterDescriptorsPlugin or ROIUtil.computeDescriptor(String, ROI, Sequence)
method instead. |
static BooleanMask2D |
BooleanMask2D.getUnionBooleanMask(ROI2D[] rois)
Deprecated.
Use
ROIUtil.getUnion(List) instead. |
static BooleanMask2D |
BooleanMask2D.getXorBooleanMask(ROI2D[] rois)
Deprecated.
Use
BooleanMask2D.getExclusiveUnionBooleanMask(ROI2D[]) instead. |
static ROI2D |
ROI2D.merge(ROI2D[] rois,
ShapeUtil.ShapeOperation operation)
Deprecated.
|
static ROI2D |
ROI2D.substract(ROI2D roi1,
ROI2D roi2)
Deprecated.
Use
ROI.getSubtraction(ROI) instead. |
static ROI2D |
ROI2D.subtract(ROI2D roi1,
ROI2D roi2)
Deprecated.
Use
ROI.getSubtraction(ROI) instead. |
Modifier and Type | Method and Description |
---|---|
static BooleanMask2D |
BooleanMask2D.getExclusiveUnionBooleanMask(java.util.ArrayList<ROI2D> rois)
Deprecated.
Use
ROIUtil.getExclusiveUnion(List) instead. |
static BooleanMask2D |
BooleanMask2D.getIntersectBooleanMask(java.util.ArrayList<ROI2D> rois)
Deprecated.
Use
ROIUtil.getIntersection(List) instead. |
static BooleanMask2D |
BooleanMask2D.getUnionBooleanMask(java.util.ArrayList<ROI2D> rois)
Deprecated.
Use
ROIUtil.getUnion(List) instead. |
static BooleanMask2D |
BooleanMask2D.getXorBooleanMask(java.util.ArrayList<ROI2D> rois)
Deprecated.
Use
BooleanMask2D.getExclusiveUnionBooleanMask(List) instead. |
Modifier and Type | Method and Description |
---|---|
ROI2D |
Sequence.getSelectedROI2D()
Returns the first selected 2D ROI found (null if no 2D ROI selected)
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<ROI2D> |
Sequence.getROI2Ds()
Returns all 2D ROIs attached to this sequence.
|
java.util.List<ROI2D> |
Sequence.getROI2Ds(boolean sorted)
Returns all 2D ROIs attached to this sequence.
|
java.util.ArrayList<ROI2D> |
Sequence.getSelectedROI2Ds()
Returns all selected 2D ROI
|
Modifier and Type | Class and Description |
---|---|
class |
ROI2DArea
ROI Area type.
|
class |
ROI2DEllipse |
class |
ROI2DLine
ROI 2D Line.
|
class |
ROI2DPath
ROI Path.
|
class |
ROI2DPoint
ROI 2D Point class.
|
class |
ROI2DPolygon
ROI 2D polygon class.
|
class |
ROI2DPolyLine |
class |
ROI2DRectangle |
class |
ROI2DRectShape
Base class for rectangular shape ROI.
|
class |
ROI2DShape |
Modifier and Type | Class and Description |
---|---|
class |
ROI3DStack<R extends ROI2D>
Base class defining a generic 3D ROI as a stack of individual 2D ROI slices.
|
Modifier and Type | Method and Description |
---|---|
void |
ROI3DArea.setSlice(int z,
ROI2D roiSlice,
boolean merge)
Deprecated.
Use one of these methods instead :
#setSlice(int, ROI2DArea) , ROI3DArea.setSlice(int, BooleanMask2D) ,
#add(int, ROI2DArea) or ROI3DArea.add(BooleanMask3D) |
Modifier and Type | Class and Description |
---|---|
class |
ROILineCutter
ROI Helper class for ROI cutting action
|