public static enum DijkstraShortestPixelPathFinder.WeightModel extends Enum<DijkstraShortestPixelPathFinder.WeightModel>
| Enum Constant and Description | 
|---|
| INTENSITYEdge weight is equal to intensity of edge target pixel. | 
| INTENSITY_CUBICEdge weight is equal to cubic intensity of edge target pixel. | 
| INTENSITY_EXPONENTIALEdge weight is equal to exponential fuunction value of intensity 
 of edge target pixel. | 
| INTENSITY_SQUAREEdge weight is equal to squared intensity of edge target pixel. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DijkstraShortestPixelPathFinder.WeightModel | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DijkstraShortestPixelPathFinder.WeightModel[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DijkstraShortestPixelPathFinder.WeightModel INTENSITY
public static final DijkstraShortestPixelPathFinder.WeightModel INTENSITY_SQUARE
public static final DijkstraShortestPixelPathFinder.WeightModel INTENSITY_CUBIC
public static final DijkstraShortestPixelPathFinder.WeightModel INTENSITY_EXPONENTIAL
public static DijkstraShortestPixelPathFinder.WeightModel[] values()
for (DijkstraShortestPixelPathFinder.WeightModel c : DijkstraShortestPixelPathFinder.WeightModel.values()) System.out.println(c);
public static DijkstraShortestPixelPathFinder.WeightModel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010–2020 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.