SimplifiedBarcodeReaderSettings
The SimplifiedBarcodeReaderSettings struct contains settings for barcode decoding. It is a sub-parameter of SimplifiedCaptureVisionSettings
Definition
typedef struct tagSimplifiedBarcodeReaderSettings
{
unsigned long long barcodeFormatIds;
int expectedBarcodesCount;
GrayscaleTransformationMode grayscaleTransformationModes[8];
GrayscaleEnhancementMode grayscaleEnhancementModes[8];
LocalizationMode localizationModes[8];
DeblurMode deblurModes[10];
int minResultConfidence;
int minBarcodeTextLength;
char barcodeTextRegExPattern[256];
int maxThreadsInOneTask;
int scaleDownThreshold;
char reserved[508];
} SimplifiedBarcodeReaderSettings;
Attributes
| Attribute | Type |
|---|---|
barcodeFormatIds |
unsigned long long |
expectedBarcodesCount |
int |
grayscaleTransformationModes |
GrayscaleTransformationMode[8] |
grayscaleEnhancementModes |
GrayscaleEnhancementMode[8] |
localizationModes |
LocalizationMode[8] |
deblurModes |
DeblurMode[10] |
minResultConfidence |
int |
minBarcodeTextLength |
int |
barcodeTextRegExPattern |
char |
maxThreadsInOneTask |
int |
scaleDownThreshold |
int |
reserved |
char[508] |
barcodeFormatIds
Input a combined value of enumeration BarcodeFormat to specify the targeting barcode formats.
unsigned long long barcodeFormatIds;
expectedBarcodesCount
Set the expected barcode count. The default value is 0.
int expectedBarcodesCount;
Remarks
- Set
expectedBarcodesCountto 0 if the barcode count is unknown. The library will try to find at least 1 barcode. - Set
expectedBarcodesCountto 1 to reach the highest speed for processing single barcode. - Set
expectedBarcodesCountto “n” if there will be “n” barcodes to process from an image. - Set
expectedBarcodesCountto the highest expected value if there exists multiple barcode but the exact count is not confirmed.
grayscaleTransformationModes
Set the grayscale transformation modes with an array of enumeration GrayscaleTransformationMode. View the reference page of GrayscaleTransformationModes for more detail about grayscale transformation modes.
GrayscaleTransformationMode grayscaleTransformationModes[8];
grayscaleEnhancementModes
Set the grayscale enhancement modes with an array of enumeration GrayscaleEnhancementMode. View the reference page of GrayscaleEnhancementModes for more detail about grayscale enhancement modes.
GrayscaleEnhancementMode grayscaleEnhancementModes[8];
localizationModes
Set the location modes with an array of enumeration LocalizationMode. View the reference page of LocalizationModes for more detail about location modes.
LocalizationMode localizationModes[8];
deblurModes
Set the deblur modes with an array of enumeration DeblurMode. View the reference page of DeblurModes for more detail about deblur modes.
DeblurMode deblurModes[10];
minResultConfidence
Set the minimum result confidence to filter out the low confidence results. The default value is 30.
int minResultConfidence;
minBarcodeTextLength
Set the minimum barcode text length to filter out the unqualified results.
int minBarcodeTextLength;
barcodeTextRegExPattern
Set the RegEx pattern of the barcode text to filter out the unqualified results.
char barcodeTextRegExPattern[256];
maxThreadsInOneTask
Set the maximum available threads count in one barcode decoding task.
int maxThreadsInOneTask;
scaleDownThreshold
Set the threshold for image shrinking.
int scaleDownThreshold;
reserved
Reserved for future use.
char reserved[508];