SectionArray
SectionArray
is a parameter that 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.
The BarcodeReaderTaskSetting
includes the following sections:
- RegionPredetectionSection
- It is designed to find regions of interest (ROIs) and thus ignoring other parts of the image during subsequent processing.
- BarcodeLocalizationSection
- It is designed to detect the exact locations of barcodes.
- BarcodeDecodingSection
- It is designed to decode the barcode from the locolized barcode areas identified in the previous
BarcodeLocalizationSection
section.
- It is designed to decode the barcode from the locolized barcode areas identified in the previous
{
"SectionArray":
[
{
"Section": "ST_REGION_PREDETECTION",
// Other parameters...
},
{
"Section": "ST_BARCODE_LOCALIZATION",
// Other parameters...
},
{
"Section": "ST_BARCODE_DECODING",
// Other parameters...
}
]
}