Need better scanning performance?
StringLengthRange
Parameter StringLengthRange sets the range of string lengths for concatenated strings of recognized text lines.
JSON Structure
Location in template:
LabelRecognizerTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_ASSEMBLE_TEXT_LINES")
└── StringLengthRange
Parent object: AssembleTextLinesStage
Example:
{
"StringLengthRange": [3,200]
}
- This snippet shows only the
StringLengthRangeparameter.- To use it, embed this parameter within a AssembleTextLinesStage object.
- For the complete JSON structure, see:
Parameter Details
| StringLengthRange Parameter Details |
|---|
| Type int[] |
| Range The array contains only two elements, corresponding to the lower and upper bounds of the Range, respectively. The value range is [0, 0x7fffffff]. |
| Default Value [3,200] |
| Remarks The first element is the lower bound and the second is the upper bound. |