@Deprecated
public final class ManualHint
extends java.lang.Object
Manual hints.
Modifier and Type | Field and Description |
---|---|
static int |
COMPLEX_BACKGROUND
Deprecated.
Use QualitySettings.getAllowComplexBackground() instead.
|
static int |
INCORRECT_BARCODES
Deprecated.
Use QualitySettings.getAllowIncorrectBarcodes() instead.
|
static int |
INVERT_IMAGE
Deprecated.
Use QualitySettings.getAllowInvertImage() instead.
|
static int |
MEDIAN_SMOOTHING
Deprecated.
Use QualitySettings.getAllowMedianSmoothing() instead.
|
static int |
NONE
Deprecated.
Don't use it, value is ignored.
|
static int |
SKIP_ROTATED_BARCODES
Deprecated.
Don't use it, value is ignored.
|
static int |
SPECIAL_FORM_OF_CELLS
Deprecated.
Use QualitySettings.getAllowDatamatrixIndustrialBarcodes() instead.
|
static int |
USE_REGULAR
Deprecated.
Use QualitySettings.getAllowRegularImage() instead. This value is ignored.
|
static int |
USE_RESTORATION
Deprecated.
Don't use it, value is ignored.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getManualHintName(int manualHints)
Deprecated.
|
static int |
getManualHintValue(java.lang.String manualHints)
Deprecated.
|
@Deprecated public static final int NONE
There are no heavy recognition algorithms. The fastest recognition algorithms are used there, however if image is noisy recognition will fail. Used by default.
public static final int INVERT_IMAGE
Use when image is white on black background. Typically BarCode images are black on white background.
public static final int INCORRECT_BARCODES
Addition algorithms are included to recognize incorrectly generated or damaged barcodes (skipped bars, stop symbol, etc). May return deniable recognition.
public static final int COMPLEX_BACKGROUND
Analyzes barcode background. Useful with complex or colored backgrounds.
public static final int MEDIAN_SMOOTHING
MEDIAN_SMOOTHING. Works with BarcodeReader's MedianSmoothingWindowSize property.
public static final int USE_RESTORATION
Starts recognition using only the restoration algorithms from MaxQuality mode.
public static final int USE_REGULAR
Starts recognition using algorithms from MaxPerfomance mode. Useful to combine with other hints.
public static final int SPECIAL_FORM_OF_CELLS
public static final int SKIP_ROTATED_BARCODES
Switches off algorithms of rotating and so increases the recognition speed. It works only for Datamatrix and linear barcodes.