TextLineResultItem
The TextLineResultItem class represents a single text line result item recognized by the library. It is derived from CapturedResultItem and is one of the base items of RecognizedTextLinesResult.
Definition
Namespace: Dynamsoft.LabelRecognizer.Maui
Assembly: Dynamsoft.LabelRecognizer.Maui
public class TextLineResultItem : CapturedResultItem
Inheritance: CapturedResultItem -> TextLineResultItem
Properties
| Property | Type | Description |
|---|---|---|
Text |
String | Returns the text content of the text line. |
Location |
Quadrilateral | Returns the location of the text line in the form of a quadrilateral. |
Confidence |
int | Returns the confidence of the text line recognition result. |
CharacterResults |
CharacterResult[] | Get all the characters in the text line. Each character is represented by a CharacterResult object. |
SpecificationName |
String | Returns the name of the TextLineSpecification object that generated this TextLineResultItem. |
Text
Returns the text content of the individual text line.
string Text { get; }
Location
It is used to get the location of the text line in the form of a Quadrilateral.
Quadrilateral Location { get; }
Confidence
Returns the confidence of the individual text line recognition result.
int Confidence { get; }
CharacterResults
Returns all the characters in the text line. Each character is represented by a CharacterResult object.
CharacterResult[] CharacterResults { get; }
SpecificationName
Returns the name of the TextLineSpecification object that generated this TextLineResultItem.
String SpecificationName { get; }