Table of contents
Swift
Objective-C

SimplifiedCaptureVisionSettings

The SimplifiedCaptureVisionSettings class contains settings for capturing and recognizing images with the CaptureVisionRouter class.

Definition

Namespace: Dynamsoft.CaptureVisionRouter.Maui

Assembly: Dynamsoft.CaptureVisionRouterLite.Maui

class SimplifiedCaptureVisionSettings

Properties

Property Type Description
CapturedResultItemTypes EnumCapturedResultItemType Specifies the type(s) of CapturedItem(s) that will be captured.
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.

CapturedResultItemTypes

Specifies the type(s) of CapturedItem(s) that will be captured.

EnumCapturedResultItemType CapturedResultItemTypes { get; set; }

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; }