T
- L
- @Deprecated public interface LabelingROIStrategy<T extends Comparable<T>,L extends Labeling<T>>
Modifier and Type | Method and Description |
---|---|
IterableRegionOfInterest |
createIterableRegionOfInterest(T label)
Deprecated.
An iterable region of interest, optimized for iteration over the pixels
in the region of interest.
|
RegionOfInterest |
createRegionOfInterest(T label)
Deprecated.
A region of interest designed to be queried for point-membership
|
long |
getArea(T label)
Deprecated.
Return the area of the labeled object in units of pixels or the volume of
the labeled object in voxels (or the hyper-volume of the 4/5-d object in
?toxels? or ?spectracels? or ?spectratoxels?)
|
boolean |
getExtents(T label,
long[] minExtents,
long[] maxExtents)
Deprecated.
Get the extents of the bounding box around the labeled object
|
Collection<T> |
getLabels()
Deprecated.
Find all of the labels used to label pixels.
|
boolean |
getRasterStart(T label,
long[] start)
Deprecated.
The coordinates of the first pixel with the given label when raster
scanning through the space.
|
RegionOfInterest createRegionOfInterest(T label)
label
- - the label of the pixels to be traversedIterableRegionOfInterest createIterableRegionOfInterest(T label)
label
- - the label to be traversedboolean getExtents(T label, long[] minExtents, long[] maxExtents)
label
- - the label of the object in questionminExtents
- - on input, must be an array of size D or larger where D is
the dimension of the space. On output, the minimum value of
the pixel coordinates for the labeled object is stored in the
array.maxExtents
- - the maximum value of the pixel coordinates for the labeled
object.boolean getRasterStart(T label, long[] start)
label
- - search on pixels of this labelstart
- - on input, an array of at least size D, on output the
coordinates of the raster start.long getArea(T label)
Collection<T> getLabels()
Copyright © 2015–2022 ImgLib2. All rights reserved.