SimplifiedLabelRecognizerSettings
The SimplifiedLabelRecognizerSettings class contains settings for label recognition. It is a sub-parameter of SimplifiedCaptureVisionSettings
Definition
Assembly: dynamsoft_capture_vision_flutter
class SimplifiedLabelRecognizerSettings
Properties
| Property | Types | Description |
|---|---|---|
grayscaleTransformationModes |
List<EnumGrayscaleTransformationMode> | The grayscale transformation modes in an array of EnumGrayscaleTransformationMode. |
grayscaleEnhancementModes |
List<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.
List<EnumGrayscaleTransformationMode> grayscaleTransformationModes;
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.
List<EnumGrayscaleEnhancementMode> grayscaleEnhancementModes;
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.
String? characterModelName;
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.
String? lineStringRegExPattern;
Remarks
maxThreadsInOneTask
The maximum available threads count in one label recognition task.
int maxThreadsInOneTask;
Remarks
scaleDownThreshold
The threshold for image shrinking when dealing with large images.
int scaleDownThreshold;