RecognizedTextLinesResult
The RecognizedTextLinesResult class represents the overall result(s) of a text recognition process. It provides access to information about the recognized text lines, the original image, and any errors that occurred during the recognition process.
Definition
Namespace: Dynamsoft.LabelRecognizer.Maui
Assembly: Dynamsoft.LabelRecognizer.Maui
class RecognizedTextLinesResult : CapturedResultBase
Properties
| Property | Type | Description |
|---|---|---|
Items |
TextLineResultItem[] | Gets the text line result item at the specified index. |
The following properties are inherited from CapturedResultBase:
| Property | Type | Description |
|---|---|---|
OriginalImageHashId |
string | Represents the hash id of the original image. |
RotationTransformMatrix |
Matrix | Represents the rotation transformation matrix of the original image relative to the rotated image. |
ErrorCode |
int | Represents the error code of this result. |
ErrorMessage |
string | Represents the error message of this result. |
Items
Gets all the text line result(s) recognized from the image/frame in an array of DSTextLineResultItem.
TextLineResultItem[]? Items { get; }