Documentation
Table of contents

RawTextLine

The RawTextLine interface represents a raw text line.

interface RawTextLine extends Core.RegionObjectElement{
    text: string;
    confidence: number;
    characterResults: Array<CharacterResult>;
    rowNumber: number;
    specificationName: string;
    location: Core.Quadrilateral;
    status: DLR.EnumRawTextLineStatus;
};

text

The raw text.

text: string;

confidence

The confidence level of the raw text.

confidence: number;

characterResults

All the characters contained by the text line in an array of CharacterResult.

characterResults: Array<CharacterResult>;

rowNumber

The row number of the text line within the image.

rowNumber: number;

specificationName

The name of the text line specification that generated this element.

specificationName: string;

location

The location of the text line.

location: Core.Quadrilateral;

See Also

status

The status of a raw text line.

status: DLR.EnumRawTextLineStatus;

See Also

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: