Skip to content

Latest commit

 

History

History
74 lines (54 loc) · 2.11 KB

File metadata and controls

74 lines (54 loc) · 2.11 KB
layout default-layout
title interface LocalizedBarcodeElement - Dynamsoft Core Module JS Edition API Reference
description This page shows the JS edition of the interface LocalizedBarcodeElement in Dynamsoft Core Module.
keywords localized barcode, JS
needAutoGenerateSidebar true
noTitleIndex true

LocalizedBarcodeElement

A localized element within a barcode. It extends RegionObjectElement and includes additional properties possibleFormats, possibleFormatsString, angle, moduleSize and confidence.

interface LocalizedBarcodeElement extends Core.RegionObjectElement {
    possibleFormats: EnumBarcodeFormat;
    possibleFormatsString: string;
    angle: number;
    moduleSize: number;
    confidence: number;
}

possibleFormats

The possible formats or barcode types that the localized element could correspond to.

possibleFormats: EnumBarcodeFormat;

See also

  • [EnumBarcodeFormat]({{ site.js_api }}enum-barcode-format.html?lang=js)

possibleFormatsString

A string that provides a human-readable representation of the possible barcode formats.

possibleFormatsString: string;

angle

The angle or orientation of the localized barcode element. It indicates how the element is positioned or rotated within the barcode.

angle: number;

moduleSize

The size of the individual modules or elements within the localized barcode element.

moduleSize: number;

confidence

The confidence score or reliability of the localization of the barcode element.

confidence: number;