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