Need better scanning performance?
SectionArray
Parameter SectionArray defines which sections exist under the LabelRecognizerTask. 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:
LabelRecognizerTaskSettingOptions[i]
└── SectionArray
Parent object: LabelRecognizerTaskSetting object
Example:
{
"SectionArray": [
{
"Section": "ST_REGION_PREDETECTION"
},
{
"Section": "ST_TEXT_LINE_LOCALIZATION"
},
{
"Section": "ST_TEXT_LINE_RECOGNITION"
}
]
}
- This snippet shows only the
SectionArrayparameter.- To use it, embed this parameter within a LabelRecognizerTaskSetting object.
- For the complete JSON structure, see:
Parameter Details
The LabelRecognizerTask 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.
- TextLineLocalizationSection (
ST_TEXT_LINE_LOCALIZATION)- Designed to detect the exact locations of text-lines.
- TextLineRecognitionSection (
ST_TEXT_LINE_RECOGNITION)- Designed to recognize the text from the text-line areas identified in the previous
TextLineLocalizationSectionsection.
- Designed to recognize the text from the text-line areas identified in the previous