Represents the results of an optical character recognition (OCR) operation

interface OCRResultBlock {
    boundingBox: OCRBoundingBox;
    confidence: number;
    text: string;
}

Properties

boundingBox: OCRBoundingBox

The bounding box of the receiver in absolute image coordinate system

confidence: number

Ranges from 0.0 (not confident) to 100.0 (very confident).

text: string

The recognized text within the receivers bounding box