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

Packages that use Cost
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 Cost in br.usp.ime.klava.segmentit.structures
 

Methods in br.usp.ime.klava.segmentit.structures that return Cost
 Cost Pixel.costPathToNeighbor(Pixel neighbor)
          Returns the cost of the path given the current path to this Pixel extending it to neighbor.
 Cost Pixel.getCost()
          Returns the cost of this Pixel.
 

Methods in br.usp.ime.klava.segmentit.structures with parameters of type Cost
 boolean Pixel.costGreaterThan(Cost cost)
          Returns if the cost of this Pixel is greater than the given cost.
 void Pixel.setCost(Cost cost)
          Sets the cost of this Pixel to cost.
 

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

Methods in br.usp.ime.klava.segmentit.util with parameters of type Cost
 boolean Cost.greaterThan(Cost cost)
          Returns if this cost is greater than the given cost.