Table of contents

SimplifiedCaptureVisionSettings

Interface SimplifiedCaptureVisionSettings 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-react-native

interface SimplifiedCaptureVisionSettings

Properties

Property Type Description
barcodeSettings SimplifiedBarcodeReaderSettings The settings for the DynamsoftBarcodeReader tasks.
documentSettings SimplifiedDocumentNormalizerSettings The settings for the DynamsoftBarcodeReader tasks.
labelSettings SimplifiedLabelRecognizerSettings The settings for the DynamsoftBarcodeReader tasks.
maxParallelTasks number Determines the maximum number of parallel tasks allowed for image capture and recognition.
minImageCaptureInterval number Sets the minimum interval (in milliseconds) between image captures.
outputOriginalImage boolean Specifies whether to output the original image.
roi Quadrilateral Sets the region of interest (ROI) when reading from a camera or a static image.
roiMeasuredInPercentage boolean Establishes whether the ROI is measured in pixels or as a percentage of the image/frame size.
timeout number Specifies the maximum time (in milliseconds) allowed for image capture and recognition.

barcodeSettings

The settings for the DynamsoftBarcodeReader tasks as a SimplifiedBarcodeReaderSettings object.

barcodeSettings?: SimplifiedBarcodeReaderSettings;

documentSettings

The settings for the DynamsoftDocumentNormalizer tasks as a SimplifiedDocumentNormalizerSettings object.

documentSettings?: SimplifiedDocumentNormalizerSettings;

labelSettings

The settings for the DynamsoftLabelRecognizer tasks as a SimplifiedLabelRecognizerSettings object.

labelSettings?: SimplifiedLabelRecognizerSettings;

maxParallelTasks

Determines the maximum number of parallel tasks allowed for image capture and recognition.

maxParallelTasks?: number;

minImageCaptureInterval

Sets the minimum interval (in milliseconds) between image captures.

minImageCaptureInterval?: number;

outputOriginalImage

Specifies whether to output the original image.

outputOriginalImage?: boolean;

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.

roi?: Quadrilateral;

roiMeasuredInPercentage

Specifies whether the region of interest (ROI) is measured in pixels or as a percentage of the image size.

roiMeasuredInPercentage?: boolean;

timeout

Specifies the maximum time (in milliseconds) allowed for image capture and recognition.

timeout?: number;

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: