Enum class listing all supported barcode symbologies. More...
Static Public Attributes | |
int | DataMatrix = 101 |
Data Matrix. | |
int | MicroPdf417 = 106 |
MicroPDF417. | |
int | MicroQR = 128 |
Micro QR code. | |
int | Pdf417 = 105 |
PDF417. | |
int | QR = 102 |
QR code. | |
int | Unknown = 0 |
Unknown barcode symbology. | |
Enum class listing all supported barcode symbologies.
This enum class defines all supported barcode symbologies. It is primarily used to specify the configuration class via the Decoder.config() function. Each enum entry includes a reference to its corresponding configuration class for all functionalities and settings.
After creating a decoder, you can configure it using the Decoder.config() member function with the desired symbology, as shown in the following example:
After decoding an image, the detected symbology type is returned as a value of this enum class via Result.symbology_type.
|
static |
Data Matrix.
See configuration class cvb.barcode.DataMatrix for all functionalities and settings.
|
static |
MicroPDF417.
See configuration class cvb.barcode.MicroPdf417 for all functionalities and settings.
|
static |
Micro QR code.
See configuration class cvb.barcode.MicroQR for all functionalities and settings.
|
static |
PDF417.
See configuration class cvb.barcode.Pdf417 for all functionalities and settings.
|
static |
QR code.
See configuration class cvb.barcode.QR for all functionalities and settings.
We use cookies to improve your experience. By using this documentation, you agree to our use of cookies.