Need better scanning performance?
AssembleTextLinesStage
AssembleTextLinesStage assembles the grouped text lines into a single text line. In JSON, it is represented as a Stage object with "Stage": "SST_ASSEMBLE_TEXT_LINES".
JSON Structure
Location in template:
LabelRecognizerTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_ASSEMBLE_TEXT_LINES")
Parent object: StageArray within TextLinesRecognitionSection
Example:
{
"Stage": "SST_ASSEMBLE_TEXT_LINES",
"StringLengthRange": [3, 200],
"StringRegExPattern": ""
}
- This snippet shows a Stage object configured for assembling text lines.
- To use it, add this object to the
StageArraywithin a TextLinesRecognitionSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_ASSEMBLE_TEXT_LINES.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_ASSEMBLE_TEXT_LINES" |
StringLengthRange
Sets the range of string lengths for concatenated strings of recognized text lines. See StringLengthRange for details.
StringRegExPattern
Specifies the regular expression pattern for concatenated strings of recognized text lines. See StringRegExPattern for details.