Need better scanning performance?
SectionArray
Parameter SectionArray defines which sections exist under the BarcodeReaderTaskSetting. A Section is a sequence of Stages that form a relatively complete processing unit, producing milestone results that include location information along with other details.
JSON Structure
Location in template:
BarcodeReaderTaskSettingOptions[i]
└── SectionArray
Parent object: BarcodeReaderTaskSetting object
Example:
{
"SectionArray": [
{
"Section": "ST_REGION_PREDETECTION"
},
{
"Section": "ST_BARCODE_LOCALIZATION"
},
{
"Section": "ST_BARCODE_DECODING"
}
]
}
- This snippet shows only the
SectionArrayparameter.- To use it, embed this parameter within a BarcodeReaderTaskSetting object.
- For the complete JSON structure, see:
Parameter Details
The BarcodeReaderTaskSetting includes the following sections:
- RegionPredetectionSection (
ST_REGION_PREDETECTION)- Designed to find regions of interest (ROIs) and thus ignore other parts of the image during subsequent processing.
- BarcodeLocalizationSection (
ST_BARCODE_LOCALIZATION)- Designed to detect the exact locations of barcodes.
- BarcodeDecodingSection (
ST_BARCODE_DECODING)- Designed to decode the barcode from the localized barcode areas identified in the previous
BarcodeLocalizationSectionsection.
- Designed to decode the barcode from the localized barcode areas identified in the previous