SimplifiedCaptureVisionSettings
The SimplifiedCaptureVisionSettings class contains settings for capturing and recognizing images with the CaptureVisionRouter class.
Definition
Namespace: Dynamsoft.CaptureVisionRouter.Maui
Assembly: Dynamsoft.CaptureVisionRouter.Maui
class SimplifiedCaptureVisionSettings
Properties
| Property | Type | Description |
|---|---|---|
Roi |
Quadrilateral | Specifies the region of interest (ROI) where the image capture and recognition will take place. |
RoiMeasuredInPercentage |
bool | Specifies whether the ROI is measured in pixels or as a percentage of the image size. |
MaxParallelTasks |
int | Specifies the maximum number of parallel tasks that can be used for image capture and recognition. |
MinImageCaptureInterval |
int | Set the minimum capture interval. It is measured in millisecond. |
Timeout |
int | Specifies the maximum time (in milliseconds) allowed for image capture and recognition. |
BarcodeSettings |
SimplifiedBarcodeReaderSettings | Specifies the settings for DynamsoftBarcodeReader tasks. |
LabelSettings |
SimplifiedLabelRecognizerSettings | Specifies the settings for DynamsoftLabelRecognizer tasks. |
DocumentSettings |
SimplifiedDocumentNormalizerSettings | Specifies the settings for DynamsoftDocumentNormalizer tasks. |
Roi
Specifies the region of interest (ROI) where the image capture and recognition will take place.
Quadrilateral Roi { get; set; }
RoiMeasuredInPercentage
Specifies whether the ROI is measured in pixels or as a percentage of the image size.
bool RoiMeasuredInPercentage { get; set; }
MaxParallelTasks
Specifies the maximum number of parallel tasks that can be used for image capture and recognition.
int MaxParallelTasks { get; set; }
MinImageCaptureInterval
Set the minimum capture interval. It is measured in millisecond.
int MinImageCaptureInterval { get; set; }
Timeout
Specifies the maximum time (in milliseconds) allowed for image capture and recognition.
int Timeout { get; set; }
BarcodeSettings
Specifies the settings for DynamsoftBarcodeReader tasks with a SimplifiedBarcodeReaderSettings object.
SimplifiedBarcodeReaderSettings BarcodeSettings { get; set; }
LabelSettings
Specifies the settings for DynamsoftLabelRecognizer tasks with a SimplifiedLabelRecognizerSettings object.
SimplifiedLabelRecognizerSettings LabelSettings { get; set; }
DocumentSettings
Specifies the settings for DynamsoftDocumentNormalizer tasks with a SimplifiedDocumentNormalizerSettings object.
SimplifiedDocumentNormalizerSettings DocumentSettings{ get; set; }