SectionArray
SectionArray
is a parameter that 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.
The LabelRecognizerTask
includes the following sections:
- ST_REGION_PREDETECTION
- It is designed to find regions of interest (ROIs) and thus ignoring other parts of the image during subsequent processing.
- ST_TEXT_LINE_LOCALIZATION
- It is designed to detect the exact locations of text-lines.
- ST_TEXT_LINE_RECOGNITION
- It is designed to recognize the text from the text-line areas identified in the previous section ST_TEXT_LINE_LOCALIZATION
{
"SectionArray":
[
{
"Section": "ST_REGION_PREDETECTION",
// Other parameters...
},
{
"Section": "ST_TEXT_LINE_LOCALIZATION",
// Other parameters...
},
{
"Section": "ST_TEXT_LINE_RECOGNITION",
// Other parameters...
}
]
}