Table of contents

SimplifiedLabelRecognizerSettings

The SimplifiedLabelRecognizerSettings class contains settings for label recognition. It is a sub-parameter of SimplifiedCaptureVisionSettings

Definition

Namespace: Dynamsoft.LabelRecognizer.Maui

Assembly: Dynamsoft.LabelRecognizer.Maui

class SimplifiedLabelRecognizerSettings

Properties

Property Type Description
GrayscaleTransformationModes EnumGrayscaleTransformationMode[] Set the grayscale transformation modes with an array of enumeration GrayscaleTransformationMode.
GrayscaleEnhancementModes EnumGrayscaleEnhancementMode[] Set the grayscale enhancement modes with an array of enumeration GrayscaleEnhancementMode.
CharacterModelName String Specify a character model by its name.
LineStringRegExPattern String Set the RegEx pattern of the text line string to filter out the unqualified results.
MaxThreadsInOneTask int Set the maximum available threads count in one label recognition task.
ScaleDownThreshold int Set the threshold for image shrinking when dealing with large images.

GrayscaleTransformationModes

Set the grayscale transformation modes with an array of enumeration GrayscaleTransformationMode.

EnumGrayscaleTransformationMode[] GrayscaleTransformationModes { get; set ; }

Remarks

View the parameter reference page of GrayscaleTransformationMode for more detail about how to set grayscale transformation modes.

GrayscaleEnhancementModes

Set the grayscale enhancement modes with an array of enumeration GrayscaleEnhancementMode.

EnumGrayscaleEnhancementMode[] GrayscaleEnhancementModes { get; set; }

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 { get; set ; }

Remarks

View the parameter reference of CharacterModelName for more details about how to use the parameter.

LineStringRegExPattern

Set the RegEx pattern of the text line string to filter out the unqualified results.

String LineStringRegExPattern { get; set ; }

MaxThreadsInOneTask

Set the maximum available threads count in one label recognition task.

int MaxThreadsInOneTask { get; set ; }

Remarks

ScaleDownThreshold

Set the threshold for image shrinking when dealing with large images.

int ScaleDownThreshold { get; set ; }