Skip to content

Latest commit

 

History

History
95 lines (64 loc) · 3.48 KB

simplified-capture-vision-settings-v2.0.32.md

File metadata and controls

95 lines (64 loc) · 3.48 KB
layout title description keywords needAutoGenerateSidebar needGenerateH3Content noTitleIndex
default-layout
Interface SimplifiedCaptureVisionSettings - Dynamsoft CaptureVisionRouter Module JS Edition API Reference v2.0.30
This page introduces the SimplifiedCaptureVisionSettings interface in Dynamsoft CaptureVisionRouter Module JS Edition v2.0.30.
capture vision, router, Intermediate-result, api reference, javascript, js
true
true
true

SimplifiedCaptureVisionSettings

The SimplifiedCaptureVisionSettings interface provides a standardized way to adjust a select set of settings for a given CaptureVisionTemplate.

interface SimplifiedCaptureVisionSettings {
    barcodeSettings: SimplifiedBarcodeReaderSettings;
    capturedResultItemTypes: EnumCapturedResultItemType;
    labelSettings: SimplifiedLabelRecognizerSettings;
    minImageCaptureInterval: number;
    roi: Quadrilateral;
    roiMeasuredInPercentage: boolean;
}

barcodeSettings

Specifies the basic settings for the barcode reader module. It is of type SimplifiedBarcodeReaderSettings.

barcodeSettings: SimplifiedBarcodeReaderSettings;

See Also

SimplifiedBarcodeReaderSettings

capturedResultItemTypes

Specifies the types of result items that are expected to be returned. It is of type EnumCapturedResultItemType.

capturedResultItemTypes: EnumCapturedResultItemType;

See Also

[EnumCapturedResultItemType]({{ site.enums }}core/captured-result-item-type.html?lang=js)

labelSettings

Specifies the basic settings for the label recognizer module. It is of type SimplifiedLabelRecognizerSettings.

labelSettings: Dynamsoft.DLR.SimplifiedLabelRecognizerSettings;

See Also

SimplifiedLabelRecognizerSettings

minImageCaptureInterval

Specifies the shortest time span, in milliseconds, that must elapse between two successive image captures. Opting for a higher interval decreases capture frequency, which can lower the system's processing load and conserve energy. On the other hand, a smaller interval value increases the frequency of image captures, enhancing the system's responsiveness.

Handling of Special Values:

-1: This value ensures the image source waits until processing of the current image is complete before starting to acquire the next one. This approach ensures there is a deliberate pause between processing consecutive images.

0 (The default setting): Adopting this value means the image source queues up the next image for immediate availability once processing of the current image is finished, facilitating continuous, uninterrupted image processing.

minImageCaptureInterval: number;

roi

Designates the region of interest (ROI) within an image, limiting the image processing activities exclusively to this specified area. It is of type Quadrilateral.

roi: Quadrilateral;

See Also

[Quadrilateral]({{ site.dcv_js_api }}core/basic-structures/quadrilateral.html?lang=js)

roiMeasuredInPercentage

Determines if the coordinates for the region of interest (ROI) are expressed in percentage terms (true) or as exact pixel measurements (false).

roiMeasuredInPercentage: boolean;