You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The class RecognizedTextLinesResult of Dynamsoft Capture Vision MAUI edition represents the result of a text recognition process.
5
+
keywords: Recognized text lines result
6
+
needGenerateH3Content: true
7
+
needAutoGenerateSidebar: true
8
+
noTitleIndex: true
9
+
breadcrumbText: RecognizedTextLinesResult
10
+
---
11
+
12
+
# RecognizedTextLinesResult
13
+
14
+
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.
15
+
16
+
## Definition
17
+
18
+
*Namespace:* Dynamsoft.LabelRecognizer.Maui
19
+
20
+
*Assembly:* Dynamsoft.LabelRecognizer.Maui
21
+
22
+
```csharp
23
+
classRecognizedTextLinesResult
24
+
```
25
+
26
+
## Properties
27
+
28
+
| Property | Type | Description |
29
+
| -------- | ---- | ----------- |
30
+
| [`OriginalImageHashId`](#originalimagehashid) | *String* | Gets the hash ID of the original image. |
31
+
| [`Items`](#items) | *IList<TextLineResultItem>* | Gets the text line result item at the specified index. |
32
+
| [`RotationTransformMatrix`](#rotationtransformmatrix) | *Matrix* | Get the rotation transformation matrix of the original image relative to the rotated image.|
33
+
| [`ErrorCode`](#errorcode) | *int* | Gets the error code of the recognition result, if an error occurred. |
34
+
| [`ErrorMessage`](#errormessage) | *String* | Gets the error message of the recognition result, if an error occurred. |
35
+
36
+
### OriginalImageHashId
37
+
38
+
Get the hash id of the original image. You can use this ID to get the original image via the [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class.
39
+
40
+
```csharp
41
+
String OriginalImageHashId { get; }
42
+
```
43
+
44
+
**Return value**
45
+
46
+
Returns the hash ID of the original image as a string.
47
+
48
+
### Items
49
+
50
+
Gets all the text line result(s) recognized from the image/frame in an array of [`DSTextLineResultItem`](text-line-result-item.md).
51
+
52
+
```csharp
53
+
IList<TextLineResultItem>Items { get; }
54
+
```
55
+
56
+
**Return value**
57
+
58
+
Returns an array of `TextLineResultItem` that contains all text line recognition results.
59
+
60
+
### RotationTransformMatrix
61
+
62
+
Get the rotation transformation matrix of the original image relative to the rotated image.
63
+
64
+
```csharp
65
+
MatrixRotationTransformMatrix { get; }
66
+
```
67
+
68
+
**Return Value**
69
+
70
+
A `Matrix` which represents the rotation transform matrix.
71
+
72
+
### ErrorCode
73
+
74
+
Gets the error code of the recognition result, if an error occurred.
75
+
76
+
```csharp
77
+
intErrorCode { get; }
78
+
```
79
+
80
+
**Return value**
81
+
82
+
Returns the error code of the recognition result, or 0 if no error occurred.
83
+
84
+
### ErrorMessage
85
+
86
+
Gets the error message of the recognition result, if an error occurred.
87
+
88
+
```csharp
89
+
StringErrorMessage { get; }
90
+
```
91
+
92
+
**Return value**
93
+
94
+
Returns a string that describes the error message.
| [`RotationTransformMatrix`](#rotationtransformmatrix) | *Matrix* | Get the rotation transformation matrix of the original image relative to the rotated image.|
33
-
| [`ErrorCode`](#errorcode) | *int* | Gets the error code of the recognition result, if an error occurred. |
34
-
| [`ErrorMessage`](#errormessage) | *String* | Gets the error message of the recognition result, if an error occurred. |
Get the hash id of the original image. You can use this ID to get the original image via the [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class.
39
-
40
-
```csharp
41
-
String OriginalImageHashId { get; }
42
-
```
43
-
44
-
**Return value**
45
-
46
-
Returns the hash ID of the original image as a string.
0 commit comments