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

    Fields
    Modifier and Type Field Description
    ij.ImageStack labelMap
    The image stack containing labels of connected components, or 0 for background.
    int nLabels
    The number of labels within the label map.
  • 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 labelMap
      The image stack containing labels of connected components, or 0 for background.
    • nLabels

      public int nLabels
      The 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.