Uses of Class
br.usp.ime.klava.segmentit.structures.PrimitiveCatchmentBasin

Packages that use PrimitiveCatchmentBasin
br.usp.ime.klava.segmentit.structures This package contains classes that implements the base data structures utilized in the segmentation tool. 
 

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

Methods in br.usp.ime.klava.segmentit.structures that return PrimitiveCatchmentBasin
 PrimitiveCatchmentBasin PrimitiveCatchmentBasinsGraph.getBasin(int label)
          Returns the vertex labeled by label.
 PrimitiveCatchmentBasin Edge.getBasin1()
          Getter for the basin1.
 PrimitiveCatchmentBasin Edge.getBasin2()
          Getter for the basin2.
 PrimitiveCatchmentBasin[] PrimitiveCatchmentBasinsGraph.getPathsFromBasin(PrimitiveCatchmentBasin basin, int[] labels)
          Returns the predecessors map that defined the paths from basin to all other basins of the same label as it (within the region of interest)
 PrimitiveCatchmentBasin HierarchyLeaf.getPrimitiveCatchmentBasin()
          Returns the PrimitiveCatchmentBasin encapsulated in the HierarchyLeaf.
 

Methods in br.usp.ime.klava.segmentit.structures that return types with arguments of type PrimitiveCatchmentBasin
 java.util.List<PrimitiveCatchmentBasin> PrimitiveCatchmentBasinsGraph.getVertices()
          Returns a List with the vertices of this graph.
 

Methods in br.usp.ime.klava.segmentit.structures with parameters of type PrimitiveCatchmentBasin
 Pixel PrimitiveCatchmentBasinsGraph.getGeneratorPixelBetween(PrimitiveCatchmentBasin basin1, PrimitiveCatchmentBasin basin2)
          Returns the pixel of basin1 that generated the edge linking basin1 to basin2.
 java.util.List<Edge> PrimitiveCatchmentBasinsGraph.getIncidentEdges(PrimitiveCatchmentBasin basin)
          Returns a List of Edges that links basin to its neighbors.
 PrimitiveCatchmentBasin[] PrimitiveCatchmentBasinsGraph.getPathsFromBasin(PrimitiveCatchmentBasin basin, int[] labels)
          Returns the predecessors map that defined the paths from basin to all other basins of the same label as it (within the region of interest)
 

Constructors in br.usp.ime.klava.segmentit.structures with parameters of type PrimitiveCatchmentBasin
Edge(int weight, Pixel generatorPixel1, Pixel generatorPixel2, PrimitiveCatchmentBasin basin1, PrimitiveCatchmentBasin basin2)
          Creates an edge linking basin1 and basin2.
HierarchyLeaf(TreeOfCriticalLakes TCL, PrimitiveCatchmentBasin basin)
          Constructs a HierarchyLeaf that encapsulates basin in a hierarchy of partitions.