Uses of Class
br.usp.ime.klava.segmentit.util.LabelingCriterion

Packages that use LabelingCriterion
br.usp.ime.klava.segmentit.util This package contains utility classes utilized in the segmentation tool. 
br.usp.ime.klava.segmentit.watershed This package contains implementations of algorithms of the classical watershed and watershed from markers. 
 

Uses of LabelingCriterion in br.usp.ime.klava.segmentit.util
 

Methods in br.usp.ime.klava.segmentit.util that return LabelingCriterion
static LabelingCriterion LabelingCriterion.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LabelingCriterion[] LabelingCriterion.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in br.usp.ime.klava.segmentit.util with parameters of type LabelingCriterion
static int[] MatrixImagesUtils.markBasins(PrimitiveCatchmentBasinsGraph graph, java.awt.image.BufferedImage markers, LabelingCriterion labelingCriterion)
          Given a unique label to each connected color component of the markers image and maps this labels to the vertices of graph.
static int MatrixImagesUtils.refreshMarkers(Pixel[][] matrix, java.awt.image.BufferedImage markers, LabelingCriterion labelingCriterion)
          Refreshes the content of matrix labeling each connected color component of the markers image with a unique label.
static int MatrixImagesUtils.refreshMarkers(Pixel[][] matrix, java.awt.image.BufferedImage markers, LabelingCriterion labelingCriterion, Connectivity connectivity)
          Refreshes the content of matrix labeling each connected color component of the markers image with a unique label.
 

Uses of LabelingCriterion in br.usp.ime.klava.segmentit.watershed
 

Methods in br.usp.ime.klava.segmentit.watershed with parameters of type LabelingCriterion
static Pixel[][] WatershedFromMarkers.byIFT(java.awt.image.BufferedImage image, java.awt.image.BufferedImage markers, Connectivity connectivity, LabelingCriterion labelingCriterion)
          Returns a partition of image using the given markers in the watershed by the IFT algorithm.
static int WatershedFromMarkers.byIFT(Pixel[][] pixels, java.awt.image.BufferedImage markers, Connectivity connectivity, LabelingCriterion labelingCriterion)
          Refreshes the partition contained in pixels using the given markers in the watershed by the IFT algorithm.
static int[] WatershedFromMarkers.byIFT(PrimitiveCatchmentBasinsGraph graph, java.awt.image.BufferedImage markers, LabelingCriterion labelingCriterion)
          Returns a labeling of the vertices of the given graph using the given markers in the watershed by the IFT algorithm.