SimplifiedCaptureVisionSettings
The SimplifiedCaptureVisionSettings class contains the general settings for all of the Capture Vision functional products (Barcode Reader, Label Recognizer, Document Normalizer, Code Parser). These settings can help for capturing and recognizing images with the CaptureVisionRouter class.
Definition
Assembly: dynamsoft_capture_vision_flutter
class SimplifiedCaptureVisionSettings
Properties
| Property | Type | Description |
|---|---|---|
roi |
Quadrilateral | Sets the region of interest (ROI) when reading from a camera or a static image. |
roiMeasuredInPercentage |
bool | Establishes whether the ROI is measured in pixels or as a percentage of the image/frame size. |
maxParallelTasks |
int | Determines the maximum number of parallel tasks allowed for image capture and recognition. |
minImageCaptureInterval |
int | Sets the minimum interval (in milliseconds) between image captures. |
timeout |
int | Specifies the maximum time (in milliseconds) allowed for image capture and recognition. |
barcodeSettings |
SimplifiedBarcodeReaderSettings | The settings for the DynamsoftBarcodeReader tasks. |
labelSettings |
SimplifiedLabelRecognizerSettings | The settings for the DynamsoftBarcodeReader tasks. |
documentSettings |
SimplifiedDocumentNormalizerSettings | The settings for the DynamsoftBarcodeReader tasks. |
roi
Sets the region of interest (ROI) when reading from a camera or a static image. If the camera is being used, any scan region that is set will be represented visually on the camera view.
Quadrilateral roi;
roiMeasuredInPercentage
Specifies whether the region of interest (ROI) is measured in pixels or as a percentage of the image size.
bool roiMeasuredInPercentage;
maxParallelTasks
Determines the maximum number of parallel tasks allowed for image capture and recognition.
int maxParallelTasks;
minImageCaptureInterval
Sets the minimum interval (in milliseconds) between image captures.
int minImageCaptureInterval;
timeout
Specifies the maximum time (in milliseconds) allowed for image capture and recognition.
int Timeout { get; set; }
barcodeSettings
The settings for the DynamsoftBarcodeReader tasks as a SimplifiedBarcodeReaderSettings object.
SimplifiedBarcodeReaderSettings? barcodeSettings;
labelSettings
The settings for the DynamsoftLabelRecognizer tasks as a SimplifiedLabelRecognizerSettings object.
SimplifiedLabelRecognizerSettings? labelSettings;
documentSettings
The settings for the DynamsoftDocumentNormalizer tasks as a SimplifiedDocumentNormalizerSettings object.
SimplifiedDocumentNormalizerSettings? documentSettings;