Documentation
Table of contents

This documentation is deprecated. It applies only to legacy version 2.x of Capture Vision and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

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>;
    specificationName: string; 
}

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

specificationName

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

specificationName: string;

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: