public static enum ImgThreshNiblack.Mode extends Enum<ImgThreshNiblack.Mode>
Enum Constant and Description |
---|
MASKWISE
Maskwise application of Niblack (non-overlapping).
|
STD
Standard Niblack applying a sliding window.
|
STD_LOCVARCHECK
Standard Niblack with sliding window and additional variance check.
|
WHOLE_IMAGE
Niblack calculation on the whole image (same as 'MASKWISE' with masksize
= image_size).
|
Modifier and Type | Method and Description |
---|---|
static ImgThreshNiblack.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImgThreshNiblack.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImgThreshNiblack.Mode STD
public static final ImgThreshNiblack.Mode STD_LOCVARCHECK
public static final ImgThreshNiblack.Mode MASKWISE
public static final ImgThreshNiblack.Mode WHOLE_IMAGE
public static ImgThreshNiblack.Mode[] values()
for (ImgThreshNiblack.Mode c : ImgThreshNiblack.Mode.values()) System.out.println(c);
public static ImgThreshNiblack.Mode 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.