Need better scanning performance?
TextLineLocalizationSection
TextLineLocalizationSection detects the exact locations of text-lines. In JSON, it is represented as a Section object with "Section": "ST_TEXT_LINE_LOCALIZATION".
JSON Structure
Location in template:
LabelRecognizerTaskSettingOptions[i]
└── SectionArray[j] (Section object where Section = "ST_TEXT_LINE_LOCALIZATION")
Parent object: SectionArray
Example:
{
"Section": "ST_TEXT_LINE_LOCALIZATION",
"ImageParameterName": "ip_dlrDefault",
"StageArray": [
{
"Stage": "SST_LOCALIZE_TEXT_LINES"
}
]
}
- This snippet shows a Section object configured for text line localization.
- To use it, add this object to the SectionArray of a LabelRecognizerTaskSetting.
- For the complete JSON structure, see:
Parameters
Section
Specifies the section type. Fixed value: ST_TEXT_LINE_LOCALIZATION.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"ST_TEXT_LINE_LOCALIZATION" |
ImageParameterName
Specifies the name of an ImageParameter object to apply in the stages of this section.
| Parameter Details |
|---|
| Type string |
| Range Must be the name of an ImageParameter object defined under ImageParameterOptions |
Default Value"" |
StageArray
Specifies the stage objects within this section. The TextLineLocalizationSection consists of the following stages:
| Stage | Description |
|---|---|
LocalizeTextLinesStage (SST_LOCALIZE_TEXT_LINES) |
Detects the exact locations of text-lines. |