TextLineResultItem
The TextLineResultItem
interface represents a text line result item recognized by the library.
interface TextLineResultItem extends Core.CapturedResultItem {
rawText: string;
location: Core.Quadrilateral;
confidence: number;
characterResults: Array<CharacterResult>;
specificationName: string;
}
rawText
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;