Interface CodeDetection

A code detection reported by the STRICH SDK.

interface CodeDetection {
    boundingRect: Rect;
    data: string;
    quadrilateral: Quadrilateral;
    rawData: Uint8Array;
    supplementalData: null | string;
    time: number;
    typeName: string;
}

Properties

boundingRect: Rect

The bounding rectangle in which the code was detected.

Note: this might not be precise, especially for 1D barcodes.

data: string

The textual data contained in the code.

quadrilateral: Quadrilateral

The quadrilateral in which the code was detected.

For rotated or warped codes, this might contain a more precise location estimate than boundingRect.

rawData: Uint8Array

The raw contained bytes contained in the code.

supplementalData: null | string

Supplemental data for this code.

time: number

The time of detection.

typeName: string

The type of detected code.

Generated using TypeDoc