SimplifiedLabelRecognizerSettings
Interface SimplifiedLabelRecognizerSettings contains settings for label recognition. It is a sub-parameter of SimplifiedCaptureVisionSettings
Definition
Assembly: dynamsoft-capture-vision-react-native
interface SimplifiedLabelRecognizerSettings
Properties
| Property | Types | Description |
|---|---|---|
grayscaleTransformationModes |
Array<EnumGrayscaleTransformationMode> | The grayscale transformation modes in an array of EnumGrayscaleTransformationMode. |
grayscaleEnhancementModes |
Array<EnumGrayscaleEnhancementMode> | The grayscale enhancement modes in an array of EnumGrayscaleEnhancementMode. |
characterModelName |
String | Specify a character model by its name. |
lineStringRegExPattern |
String | The RegEx pattern of the text line string to filter out the unqualified results. |
maxThreadsInOneTask |
int | The maximum available threads count in one label recognition task. |
scaleDownThreshold |
int | The threshold for image shrinking when dealing with large images. |
grayscaleTransformationModes
The grayscale transformation modes in an array of EnumGrayscaleTransformationMode.
grayscaleTransformationModes?: Int32Array | Array<EnumGrayscaleTransformationMode>
Remarks
View the parameter reference page of GrayscaleTransformationMode for more detail about how to set grayscale transformation modes.
grayscaleEnhancementModes
The grayscale enhancement modes in an array of EnumGrayscaleEnhancementMode.
grayscaleEnhancementModes?: Int32Array | Array<EnumGrayscaleEnhancementMode>
Remarks
View the reference page of GrayscaleEnhancementMode for more detail about how to set grayscale enhancement modes.
characterModelName
Specify a character model by its name.
characterModelName?: string
Remarks
View the parameter reference of CharacterModelName for more details about how to use the parameter.
lineStringRegExPattern
The RegEx pattern of the text line string to filter out the unqualified results.
lineStringRegExPattern?: string
Remarks
maxThreadsInOneTask
The maximum available threads count in one label recognition task.
maxThreadsInOneTask?: number
Remarks
scaleDownThreshold
The threshold for image shrinking when dealing with large images.
scaleDownThreshold?: number