Documentation
Table of contents

TextLineResultItem

The TextLineResultItem interface represents a text line result item recognized by the library.

interface TextLineResultItem extends Core.CapturedResultItem {
    text: string;
    location: Core.Quadrilateral;
    confidence: number;
    characterResults: Array<CharacterResult>
}

Text

The text content of the text line.

text: string;

Location

The location of the text line in the form of a quadrilateral.

location: Quadrilateral;

See Also

confidence

It is used to get the confidence of the text line recognition result.

confidence: number;

characterResults

All the characters in the text line.

characterResults: Array<CharacterResult>;

See Also

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: