Need better scanning performance?
ClusterSamplesCountThreshold
The parameter ClusterSamplesCountThreshold defines the threshold for successful character clustering. It defines the minimum number of samples in a single cluster. If every character in a group of confusable characters has been successfully clustered, the group will stop clustering. For example, [0,O,o] is a typical group of confusing characters.
JSON Structure
Location in template:
LabelRecognizerTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_RECOGNIZE_RAW_TEXT_LINES")
└── ClusterSamplesCountThreshold
Parent object: RecognizeRawTextLinesStage
Example:
{
"ClusterSamplesCountThreshold": 5
}
- This snippet shows only the
ClusterSamplesCountThresholdparameter.- To use it, embed this parameter within a RecognizeRawTextLinesStage object.
- For the complete JSON structure, see:
Parameter Details
| ClusterSamplesCountThreshold Parameter Details |
|---|
| Type int |
| Range [0, 0x7FFFFFFF]. |
| Default Value 0 |
| Remarks 0 indicates that the confusable characters clustering is not enabled. |