Package net.haesleinhuepf.clij2.plugins
Enum AutoThresholderImageJ1.Method
- java.lang.Object
-
- java.lang.Enum<AutoThresholderImageJ1.Method>
-
- net.haesleinhuepf.clij2.plugins.AutoThresholderImageJ1.Method
-
- All Implemented Interfaces:
Serializable,Comparable<AutoThresholderImageJ1.Method>
- Enclosing class:
- AutoThresholderImageJ1
public static enum AutoThresholderImageJ1.Method extends Enum<AutoThresholderImageJ1.Method>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DefaultHuangIJ_IsoDataIntermodesIsoDataLiMaxEntropyMeanMinErrorMinimumMomentsOtsuPercentileRenyiEntropyShanbhagTriangleYen
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AutoThresholderImageJ1.MethodvalueOf(String name)Returns the enum constant of this type with the specified name.static AutoThresholderImageJ1.Method[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Default
public static final AutoThresholderImageJ1.Method Default
-
Huang
public static final AutoThresholderImageJ1.Method Huang
-
Intermodes
public static final AutoThresholderImageJ1.Method Intermodes
-
IsoData
public static final AutoThresholderImageJ1.Method IsoData
-
IJ_IsoData
public static final AutoThresholderImageJ1.Method IJ_IsoData
-
Li
public static final AutoThresholderImageJ1.Method Li
-
MaxEntropy
public static final AutoThresholderImageJ1.Method MaxEntropy
-
Mean
public static final AutoThresholderImageJ1.Method Mean
-
MinError
public static final AutoThresholderImageJ1.Method MinError
-
Minimum
public static final AutoThresholderImageJ1.Method Minimum
-
Moments
public static final AutoThresholderImageJ1.Method Moments
-
Otsu
public static final AutoThresholderImageJ1.Method Otsu
-
Percentile
public static final AutoThresholderImageJ1.Method Percentile
-
RenyiEntropy
public static final AutoThresholderImageJ1.Method RenyiEntropy
-
Shanbhag
public static final AutoThresholderImageJ1.Method Shanbhag
-
Triangle
public static final AutoThresholderImageJ1.Method Triangle
-
Yen
public static final AutoThresholderImageJ1.Method Yen
-
-
Method Detail
-
values
public static AutoThresholderImageJ1.Method[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AutoThresholderImageJ1.Method c : AutoThresholderImageJ1.Method.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoThresholderImageJ1.Method valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-