Enumeration GrayscaleEnhancementMode
GrayscaleEnhancementMode specifies the method employed to enhance images in grayscale.
@Retention(RetentionPolicy.CLASS)public @interface EnumGrayscaleEnhancementMode {
/**Not supported yet. */
int GEM_AUTO = 1;
/**Takes the unpreprocessed image for following operations.*/
int GEM_GENERAL = 2;
/**Preprocesses the image using the gray equalization algorithm. Check @ref IPM for available argument settings.*/
int GEM_GRAY_EQUALIZE = 4;
/**Preprocesses the image using the gray smoothing algorithm. Check @ref IPM for available argument settings.*/
int GEM_GRAY_SMOOTH = 8;
/**Preprocesses the image using the sharpening and smoothing algorithm. Check @ref IPM for available argument settings.*/
int GEM_SHARPEN_SMOOTH = 16;
/**Reserved setting for image preprocessing mode.*/
int GEM_REV = -2147483648;
/**Skips image preprocessing. */
int GEM_SKIP = 0;
/**Placeholder value with no functional meaning. */
int GEM_END = 0xFFFFFFFF;
}