public static enum CalcSegmentationStatistics.CalcTargets extends Enum<CalcSegmentationStatistics.CalcTargets>
Enum Constant and Description |
---|
classMean
Average intensity values of all regions.
|
classSize
Size of individual regions.
|
classVar
Intensity variance within each region.
|
Modifier and Type | Method and Description |
---|---|
static CalcSegmentationStatistics.CalcTargets |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalcSegmentationStatistics.CalcTargets[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalcSegmentationStatistics.CalcTargets classSize
public static final CalcSegmentationStatistics.CalcTargets classMean
For a single region R the average intensity is calculated as follows:
public static final CalcSegmentationStatistics.CalcTargets classVar
A region's intensity variance is calculated as follows:
public static CalcSegmentationStatistics.CalcTargets[] values()
for (CalcSegmentationStatistics.CalcTargets c : CalcSegmentationStatistics.CalcTargets.values()) System.out.println(c);
public static CalcSegmentationStatistics.CalcTargets 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.