TextLine class
A line of recognized text; the location and additional information are also available.
final class TextLine {
public final String Text;
public final Rect Rect;
public final Point[] Quadrangle;
public final CharInfo[] CharInfo;
public final boolean IsRTL;
}
Properties
Name | Type | Description |
---|---|---|
CharInfo | CharInfo[] | Additional information about the characters. May be null. |
Quadrangle | Point[] | The four vertex points of the bounding quadrangle. The vertices are indexed clockwise starting from the bottom left. |
Rect | Rect | The bounding rectangle of the text line. |
Text | String | The recognized text. |
IsRTL | boolean | Specifies if the text line parsing should be started from the right and continued to the left. |
02.03.2022 12:59:15