Package inra.ijpb.binary.conncomp
Class FloodFillComponentsLabeling3D.Result
java.lang.Object
inra.ijpb.binary.conncomp.FloodFillComponentsLabeling3D.Result
- Enclosing class:
- FloodFillComponentsLabeling3D
public class FloodFillComponentsLabeling3D.Result
extends java.lang.Object
Data class that stores result of connected component labeling.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description Result(ij.ImageStack labelMap)
Creates a new Result class from an (empty) labelMap. -
Method Summary
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
labelMap
public ij.ImageStack labelMapThe image stack containing labels of connected components, or 0 for background. -
nLabels
public int nLabelsThe number of labels within the label map.
-
-
Constructor Details
-
Result
public Result(ij.ImageStack labelMap)Creates a new Result class from an (empty) labelMap.- Parameters:
labelMap
- the labelMap that will be initialized during processing.
-