Skip to content

Commit 94beff2

Browse files
update to internal commit 8ef50a6b
1 parent 4f94a57 commit 94beff2

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ dcv_introduction: /capture-vision/docs/core/introduction/
2626

2727
dcv_maui_api: /capture-vision/docs/mobile/programming/maui/api-reference/
2828

29+
dcv_flutter: /capture-vision/docs/mobile/programming/flutter/
30+
dcv_flutter_api: /capture-vision/docs/mobile/programming/flutter/api-reference/
31+
2932
dce_ios: /camera-enhancer/docs/mobile/programming/ios/
3033
dce_ios_api: /camera-enhancer/docs/mobile/programming/ios/
3134
dce_android: /camera-enhancer/docs/mobile/programming/android/

programming/flutter/api-reference/recognized-text-lines-result.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_f
3030

3131
| Property | Types | Description |
3232
| -------- | ----- | ----------- |
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. |
3737

3838
### getItems
3939

programming/flutter/api-reference/simplified-label-recognizer-settings.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,36 +23,36 @@ class SimplifiedLabelRecognizerSettings
2323

2424
| Property | Types | Description |
2525
| -------- | ----- | ----------- |
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). |
2828
| [`characterModelName`](#charactermodelname) | *String* | Specify a character model by its name. |
2929
| [`lineStringRegExPattern`](#linestringregexpattern) | *String* | The RegEx pattern of the text line string to filter out the unqualified results. |
3030
| [`maxThreadsInOneTask`](#maxthreadsinonetask) | *int* | The maximum available threads count in one label recognition task. |
3131
| [`scaleDownThreshold`](#scaledownthreshold) | *int* | The threshold for image shrinking when dealing with large images. |
3232

3333
### grayscaleTransformationModes
3434

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).
3636

3737
```dart
3838
List<EnumGrayscaleTransformationMode> grayscaleTransformationModes;
3939
```
4040

4141
**Remarks**
4242

43-
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.
4444

4545
### grayscaleEnhancementModes
4646

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).
4848

4949
```dart
5050
List<EnumGrayscaleEnhancementMode> grayscaleEnhancementModes;
5151
```
5252

5353
**Remarks**
5454

55-
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.
5656

5757
### characterModelName
5858

@@ -64,7 +64,7 @@ String? characterModelName;
6464

6565
**Remarks**
6666

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.
6868

6969
### lineStringRegExPattern
7070

programming/flutter/api-reference/text-line-result-item.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TextLineResultItem extends CapturedResultItem
2929
| [`text`](#text) | *String* | Returns the text content of the text line. |
3030
| [`location`](#location) | *Quadrilateral* | Returns the location of the text line in the form of a quadrilateral. |
3131
| [`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. |
3333
| [`specificationName`](#specificationname) | *String* | Returns the name of the [`TextLineSpecification`]({{site.dcv_parameter_reference}}text-line-specification/) object that generated this `TextLineResultItem`. |
3434
| [`rawText`](#rawtext) | *String* | Returns the recognized raw text, excluding any concatenation separators. |
3535

@@ -43,7 +43,7 @@ String text;
4343

4444
### location
4545

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).
4747

4848
```dart
4949
Quadrilateral location;
@@ -59,7 +59,7 @@ int confidence;
5959

6060
### characterResults
6161

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.
6363

6464
```dart
6565
List<CharacterResult>? characterResults;

0 commit comments

Comments
 (0)