TextLine class
A fragment of recognized text, with additional information about characters.
final class TextLine {
public final String Text;
public final Point[] Quadrangle;
public final CharInfo[] CharInfo;
}
Properties
Name | Type | Description |
---|---|---|
CharInfo | CharInfo[] |
Additional information about the characters.
|
Quadrangle | Point[] |
The four vertex points of the bounding quadrangle. The vertices are indexed clockwise starting from the bottom left.
|
Text | String | The recognized text. |
3/2/2022 12:59:15 PM