Package gov.nih.mipav.model.algorithms
Class AlgorithmPowerWatershed.RbtElt
- java.lang.Object
-
- gov.nih.mipav.model.algorithms.AlgorithmPowerWatershed.RbtElt
-
- Enclosing class:
- AlgorithmPowerWatershed
class AlgorithmPowerWatershed.RbtElt extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
auxdata
(package private) byte
color
(package private) double
key
(package private) AlgorithmPowerWatershed.RbtElt
left
(package private) AlgorithmPowerWatershed.RbtElt
parent
(package private) AlgorithmPowerWatershed.RbtElt
right
-
Constructor Summary
Constructors Constructor Description RbtElt()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAuxdata()
byte
getColor()
double
getKey()
AlgorithmPowerWatershed.RbtElt
getLeft()
AlgorithmPowerWatershed.RbtElt
getParent()
AlgorithmPowerWatershed.RbtElt
getRight()
void
setAuxdata(int auxdata)
void
setColor(byte color)
void
setKey(double key)
void
setLeft(AlgorithmPowerWatershed.RbtElt left)
void
setParent(AlgorithmPowerWatershed.RbtElt parent)
void
setRight(AlgorithmPowerWatershed.RbtElt right)
-
-
-
Field Detail
-
auxdata
int auxdata
-
key
double key
-
color
byte color
-
left
AlgorithmPowerWatershed.RbtElt left
-
right
AlgorithmPowerWatershed.RbtElt right
-
parent
AlgorithmPowerWatershed.RbtElt parent
-
-
Method Detail
-
setAuxdata
public void setAuxdata(int auxdata)
-
getAuxdata
public int getAuxdata()
-
setKey
public void setKey(double key)
-
getKey
public double getKey()
-
setColor
public void setColor(byte color)
-
getColor
public byte getColor()
-
setLeft
public void setLeft(AlgorithmPowerWatershed.RbtElt left)
-
getLeft
public AlgorithmPowerWatershed.RbtElt getLeft()
-
setRight
public void setRight(AlgorithmPowerWatershed.RbtElt right)
-
getRight
public AlgorithmPowerWatershed.RbtElt getRight()
-
setParent
public void setParent(AlgorithmPowerWatershed.RbtElt parent)
-
getParent
public AlgorithmPowerWatershed.RbtElt getParent()
-
-