public class ROIInteriorDescriptor extends ROIDescriptor
ROIDescriptor)| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ID |
| Constructor and Description |
|---|
ROIInteriorDescriptor() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
compute(ROI roi,
Sequence sequence)
Computes the descriptor on the specified ROI and return the result.
|
static double |
computeInterior(double interiorPoints,
ROI roi,
Sequence sequence,
int dim)
Returns the interior size from a given number of interior points in the best unit (see
Sequence.getBestPixelSizeUnit(int, int)) for the specified sequence and dimension. |
static double |
computeInterior(ROI roi)
Returns the number of point inside the specified ROI.
|
java.lang.String |
getDescription()
Returns a single line description (used as tooltip) for this descriptor
|
java.lang.String |
getUnit(Sequence sequence)
Returns the unit of this descriptor (
ex: "px", "mm", "µm2"... |
computeDescriptor, computeDescriptor, equals, getDescriptor, getDescriptor, getDescriptors, getId, getName, getType, hashCode, needRecompute, needRecompute, separateChannel, toStringpublic static final java.lang.String ID
public ROIInteriorDescriptor()
public java.lang.String getUnit(Sequence sequence)
ROIDescriptorex: "px", "mm", "µm2"...).
It can return an empty or null string (default implementation) if there is no
specific unit attached to the descriptor.getUnit in class ROIDescriptorsequence - the sequence on which we want to compute the descriptor (if required) to get access to
the pixel size informations and return according unitpublic java.lang.String getDescription()
ROIDescriptorgetDescription in class ROIDescriptorpublic java.lang.Object compute(ROI roi, Sequence sequence) throws java.lang.UnsupportedOperationException
ROIDescriptorcompute in class ROIDescriptorroi - the ROI on which the descriptor(s) should be computedsequence - an optional sequence where the pixel informations can be retrieved (see ROIDescriptor.separateChannel())java.lang.UnsupportedOperationException - if the type of the given ROI is not supported by this descriptor, or if sequence is
null while the calculation requires itpublic static double computeInterior(ROI roi)
roi - the ROI on which we want to compute the number of contour pointpublic static double computeInterior(double interiorPoints, ROI roi, Sequence sequence, int dim) throws java.lang.UnsupportedOperationException
Sequence.getBestPixelSizeUnit(int, int)) for the specified sequence and dimension.UnsupportedOperationException if the operation is not supported for that ROI.interiorPoints - the number of interior points (override the ROI value)roi - the ROI we want to compute the interior sizesequence - the input sequence used to retrieve operation unit by using pixel size information.dim - the dimension for the interior size operation (2 = area, 3 = volume, ...)java.lang.UnsupportedOperationException - if the interior calculation for the specified dimension is not supported by the ROISequence.getBestPixelSizeUnit(int, int)