Need better scanning performance?
DecodeBarcodesStage
DecodeBarcodesStage extracts and interprets barcode data from localized barcode regions. In JSON, it is represented as a Stage object with "Stage": "SST_DECODE_BARCODES".
JSON Structure
Location in template:
BarcodeReaderTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_DECODE_BARCODES")
Parent object: StageArray within BarcodeDecodingSection
Example:
{
"Stage": "SST_DECODE_BARCODES",
"DeblurModes": [
{
"Mode": "DM_DIRECT_BINARIZATION"
}
],
"ReturnBarcodeZoneClarity": 0
}
- This snippet shows a Stage object configured for barcode decoding.
- To use it, add this object to the
StageArraywithin a BarcodeDecodingSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_DECODE_BARCODES.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_DECODE_BARCODES" |
DeblurModes
Defines the mode and priority for deblurring. See DeblurModes for details.
ReturnBarcodeZoneClarity
Specifies whether to return the clarity of the barcode zone. See ReturnBarcodeZoneClarity for details.