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

Packages that use HierarchyCriterion
br.usp.ime.klava.segmentit.builders This package defines extensions points in SegmentIt. 
br.usp.ime.klava.segmentit.builders.interfaces This package defines the interfaces of the extensions points in SegmentIt. 
br.usp.ime.klava.segmentit.structures This package contains classes that implements the base data structures utilized in the segmentation tool. 
br.usp.ime.klava.segmentit.util This package contains utility classes utilized in the segmentation tool. 
 

Uses of HierarchyCriterion in br.usp.ime.klava.segmentit.builders
 

Methods in br.usp.ime.klava.segmentit.builders with parameters of type HierarchyCriterion
 TreeOfCriticalLakes DefaultTreeOfCriticalLakesBuilder.buildTreeOfCriticalLakes(PrimitiveCatchmentBasinsGraph graph, HierarchyCriterion criterion, int[] labels, java.awt.Point selectedPixel, int[] desiredLabels)
          Calls TreeOfCriticalLakes.TreeOfCriticalLakes(PrimitiveCatchmentBasinsGraph, HierarchyCriterion, int[], Point, int[]) .
 

Uses of HierarchyCriterion in br.usp.ime.klava.segmentit.builders.interfaces
 

Methods in br.usp.ime.klava.segmentit.builders.interfaces with parameters of type HierarchyCriterion
 TreeOfCriticalLakes TreeOfCriticalLakesBuilderIF.buildTreeOfCriticalLakes(PrimitiveCatchmentBasinsGraph graph, HierarchyCriterion criterion, int[] labels, java.awt.Point selectedPixel, int[] desiredLabels)
           
 

Uses of HierarchyCriterion in br.usp.ime.klava.segmentit.structures
 

Methods in br.usp.ime.klava.segmentit.structures that return HierarchyCriterion
 HierarchyCriterion TreeOfCriticalLakes.getHierarchyCriterion()
          Returns the HierarchyCriterion utilized to build the nested partitions set.
 

Methods in br.usp.ime.klava.segmentit.structures with parameters of type HierarchyCriterion
 void HierarchyManager.setCriterion(HierarchyCriterion hierarchyCriterion, boolean storeState)
          Derives a nested partitions set using the given hierarchyCriterion.
 

Constructors in br.usp.ime.klava.segmentit.structures with parameters of type HierarchyCriterion
HierarchyManager(PrimitiveCatchmentBasinsGraph graph, HierarchyCriterion hierarchyCriterion, java.awt.image.BufferedImage originalImage)
          Constructs a hierarchical set of nested partitions of graph.
HierarchyManager(PrimitiveCatchmentBasinsGraph graph, HierarchyCriterion hierarchyCriterion, int[] labels, java.awt.Point selectedPixel, java.awt.image.BufferedImage originalImage)
          Constructs a hierarchical set of nested partitions of graph.
HierarchyManager(PrimitiveCatchmentBasinsGraph graph, HierarchyCriterion hierarchyCriterion, Pixel[][] initialPartition, java.awt.Point selectedPixel, java.awt.image.BufferedImage originalImage)
          Constructs a hierarchical set of nested partitions of the vertices of the graph.
TreeOfCriticalLakes(PrimitiveCatchmentBasinsGraph graph, HierarchyCriterion criterion, int[] labels, java.awt.Point selectedPixel, int[] desiredLabels)
          Creates a hierarchy of nested partitions.
 

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

Fields in br.usp.ime.klava.segmentit.util declared as HierarchyCriterion
static HierarchyCriterion HierarchyCriterion.AREA
          Criterion of synchronous flooding, used to rank regions according to their area.
static HierarchyCriterion HierarchyCriterion.DEPTH
          Criterion of synchronous flooding, used to rank regions according to their contrast.
static HierarchyCriterion HierarchyCriterion.MEAN_VALUE
          Criterion to build hierarchies merging adjacent regions by the similarity of the mean values of their pixels.
static HierarchyCriterion HierarchyCriterion.MERGING_LEVEL
          Criterion of uniform flooding.
static HierarchyCriterion HierarchyCriterion.VOLUME
          Criterion of synchronous flooding, used to rank regions according to their contrast and area.
 

Methods in br.usp.ime.klava.segmentit.util that return HierarchyCriterion
 HierarchyCriterion HierarchyState.getHierarchyCriterion()
          Returns the criterion from with the hierarchy was derived.
static HierarchyCriterion HierarchyCriterion.valueOf(java.lang.String criterionName)
          Returns the HierarchyCriterion associated with the name criterionName.
 

Methods in br.usp.ime.klava.segmentit.util that return types with arguments of type HierarchyCriterion
static java.util.Collection<HierarchyCriterion> HierarchyCriterion.values()
          Returns a Collection with all the existing HierarchyCriterion.
 

Constructors in br.usp.ime.klava.segmentit.util with parameters of type HierarchyCriterion
HierarchyState(HierarchyCriterion hierarchyCriterion)
          State representing a hierarchy constructed using the hierarchyCriterion and with the hierarchy root selected (only one ROI).
HierarchyState(int[] labels, HierarchyCriterion hierarchyCriterion)
          State representing a hierarchy constructed using the hierarchyCriterion and that contains the partition derived from labels.
HierarchyState(int threshold, HierarchyCriterion hierarchyCriterion)
          State representing a hierarchy constructed using the hierarchyCriterion and with a partition selected by the given threshold.