Enumeration DeblurMode
DeblurMode specifies the image processing algorithms applied to the localized zones containing barcodes, aimed at generating a binary image for extracting barcode data during the final phase of the barcode decoding process.
@Retention(RetentionPolicy.CLASS)
public @interface EnumDeblurMode {
/** Performs deblur process using the direct binarization algorithm. */
public static final int DM_DIRECT_BINARIZATION = 0x01;
/** Performs deblur process using the threshold binarization algorithm. */
public static final int DM_THRESHOLD_BINARIZATION = 0x02;
/** Performs deblur process using the gray equalization algorithm. */
public static final int DM_GRAY_EQUALIZATION = 0x04;
/** Performs deblur process using the smoothing algorithm. */
public static final int DM_SMOOTHING = 0x08;
/** Performs deblur process using the morphing algorithm. */
public static final int DM_MORPHING = 0x10;
/** Performs deblur process using the deep analysis algorithm. */
public static final int DM_DEEP_ANALYSIS = 0x20;
/** Performs deblur process using the sharpening algorithm. */
public static final int DM_SHARPENING = 0x40;
/** Performs deblur process based on the binary image from the localization process. */
public static final int DM_BASED_ON_LOC_BIN = 0x80;
/** Performs deblur process using the sharpening and smoothing algorithm. */
public static final int DM_SHARPENING_SMOOTHING = 0x100;
/** Performs deblur process using the deep neural network algorithm. */
public static final int DM_NEURAL_NETWORK = 0x200;
/**Reserved setting for deblur mode.*/
public static final int DM_REV = -2147483648;
/**Skips the deblur process.*/
public static final int DM_SKIP = 0x00
/**Placeholder value with no functional meaning.*/
public static final int DM_END=0xFFFFFFFF;
}