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
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/recognized-text-lines-result.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,10 +30,10 @@ The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_f
30
30
31
31
| Property | Types | Description |
32
32
| -------- | ----- | ----------- |
33
-
|[`originalImageHashId`](#originalimagehashid)|*String*| The hash id of the original image. |
34
-
|[`rotationTransformMatrix`](#rotationtransformmatrix)|*Matrix4*| The rotation transformation matrix of the original image relative to the rotated image. |
35
-
|[`errorCode`](#errorcode)|*int*| The error code of this result. |
36
-
|[`errorMessage`](#errormessage)|*String*| The error message of this result. |
33
+
|[`originalImageHashId`]({{ site.dcv_flutter_api }}core/captured-result-base.html#originalimagehashid) |*String*| The hash id of the original image. |
34
+
|[`rotationTransformMatrix`]({{ site.dcv_flutter_api }}core/captured-result-base.html#rotationtransformmatrix) |*Matrix4*| The rotation transformation matrix of the original image relative to the rotated image. |
35
+
|[`errorCode`]({{ site.dcv_flutter_api }}core/captured-result-base.html#errorcode) |*int*| The error code of this result. |
36
+
|[`errorMessage`]({{ site.dcv_flutter_api }}core/captured-result-base.html#errormessage) |*String*| The error message of this result. |
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/simplified-label-recognizer-settings.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,36 +23,36 @@ class SimplifiedLabelRecognizerSettings
23
23
24
24
| Property | Types | Description |
25
25
| -------- | ----- | ----------- |
26
-
|[`grayscaleTransformationModes`](#grayscaletransformationmodes)|*EnumGrayscaleTransformationMode[]*| The grayscale transformation modes in an array of enumeration [`GrayscaleTransformationMode`]({{ site.dcv_enumerations}}core/grayscale-transformation-mode.html). |
27
-
|[`grayscaleEnhancementModes`](#grayscaleenhancementmodes)|*EnumGrayscaleEnhancementMode[]*| The grayscale enhancement modes in an array of enumeration [`GrayscaleEnhancementMode`]({{ site.dcv_enumerations}}core/grayscale-enhancement-mode.html). |
26
+
|[`grayscaleTransformationModes`](#grayscaletransformationmodes)|*EnumGrayscaleTransformationMode[]*| The grayscale transformation modes in an array of [`EnumGrayscaleTransformationMode`]({{ site.dcv_flutter_api}}core/enum/grayscale-transformation-mode.html). |
27
+
|[`grayscaleEnhancementModes`](#grayscaleenhancementmodes)|*EnumGrayscaleEnhancementMode[]*| The grayscale enhancement modes in an array of [`EnumGrayscaleEnhancementMode`]({{ site.dcv_flutter_api}}core/enum/grayscale-enhancement-mode.html). |
28
28
|[`characterModelName`](#charactermodelname)|*String*| Specify a character model by its name. |
29
29
|[`lineStringRegExPattern`](#linestringregexpattern)|*String*| The RegEx pattern of the text line string to filter out the unqualified results. |
30
30
|[`maxThreadsInOneTask`](#maxthreadsinonetask)|*int*| The maximum available threads count in one label recognition task. |
31
31
|[`scaleDownThreshold`](#scaledownthreshold)|*int*| The threshold for image shrinking when dealing with large images. |
32
32
33
33
### grayscaleTransformationModes
34
34
35
-
The grayscale transformation modes in an array of enumeration [`GrayscaleTransformationMode`]({{ site.dcv_enumerations}}core/grayscale-transformation-mode.html).
35
+
The grayscale transformation modes in an array of [`EnumGrayscaleTransformationMode`]({{ site.dcv_flutter_api }}core/enum/grayscale-transformation-mode.html).
View the parameter reference page of [`GrayscaleTransformationMode`]({{ site.dcv_parameter_reference }}image-parameter/grayscale-transformation-modes.html){:target="_blank"} for more detail about how to set grayscale transformation modes.
43
+
View the parameter reference page of [`GrayscaleTransformationMode`]({{ site.dcv_parameter_reference }}image-parameter/grayscale-transformation-modes.html) for more detail about how to set grayscale transformation modes.
44
44
45
45
### grayscaleEnhancementModes
46
46
47
-
The grayscale enhancement modes in an array of enumeration [`GrayscaleEnhancementMode`]({{ site.dcv_enumerations}}core/grayscale-enhancement-mode.html).
47
+
The grayscale enhancement modes in an array of [`EnumGrayscaleEnhancementMode`]({{ site.dcv_flutter_api }}core/enum/grayscale-enhancement-mode.html).
View the reference page of [`GrayscaleEnhancementMode`]({{ site.dcv_parameter_reference }}image-parameter/grayscale-enhancement-modes.html){:target="_blank"} for more detail about how to set grayscale enhancement modes.
55
+
View the reference page of [`GrayscaleEnhancementMode`]({{ site.dcv_parameter_reference }}image-parameter/grayscale-enhancement-modes.html) for more detail about how to set grayscale enhancement modes.
56
56
57
57
### characterModelName
58
58
@@ -64,7 +64,7 @@ String? characterModelName;
64
64
65
65
**Remarks**
66
66
67
-
View the parameter reference of [CharacterModelName]({{ site.dcv_parameter_reference }}text-line-specification/character-model-name.html) for more details about how to use the parameter.
67
+
View the parameter reference of [`CharacterModelName`]({{ site.dcv_parameter_reference }}text-line-specification/character-model-name.html) for more details about how to use the parameter.
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/text-line-result-item.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ class TextLineResultItem extends CapturedResultItem
29
29
|[`text`](#text)|*String*| Returns the text content of the text line. |
30
30
|[`location`](#location)|*Quadrilateral*| Returns the location of the text line in the form of a quadrilateral. |
31
31
|[`confidence`](#confidence)|*int*| Returns the confidence of the text line recognition result. |
32
-
|[`characterResults`](#characterresults)|*List<CharacterResult>*| Get all the characters in the text line. Each character is represented by a [`CharacterResult`](character-result.md) object. |
32
+
|[`characterResults`](#characterresults)|*List<CharacterResult>*| Get all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}core/character-result.html) object. |
33
33
|[`specificationName`](#specificationname)|*String*| Returns the name of the [`TextLineSpecification`]({{site.dcv_parameter_reference}}text-line-specification/) object that generated this `TextLineResultItem`. |
34
34
|[`rawText`](#rawtext)|*String*| Returns the recognized raw text, excluding any concatenation separators. |
35
35
@@ -43,7 +43,7 @@ String text;
43
43
44
44
### location
45
45
46
-
It is used to get the location of the text line in the form of a [Quadrilateral]({{ site.dcv_android_api }}core/quadrilateral.html).
46
+
It is used to get the location of the text line in the form of a [Quadrilateral]({{ site.dcv_flutter_api }}core/quadrilateral.html).
47
47
48
48
```dart
49
49
Quadrilateral location;
@@ -59,7 +59,7 @@ int confidence;
59
59
60
60
### characterResults
61
61
62
-
Returns all the characters in the text line. Each character is represented by a [`CharacterResult`](character-result.md) object.
62
+
Returns all the characters in the text line. Each character is represented by a [`CharacterResult`]({{ site.dcv_flutter_api }}core/character-result.html) object.
0 commit comments