Skip to content

Commit dbe9aa7

Browse files
update to internal commit f6e46ee7
1 parent c5f3e09 commit dbe9aa7

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ dcv_android_api: /capture-vision/docs/mobile/programming/android/api-reference/
1919

2020
dcv_maui_api: /capture-vision/docs/mobile/programming/maui/api-reference/
2121

22+
dcv_flutter: /capture-vision/docs/mobile/programming/flutter/
23+
dcv_flutter_api: /capture-vision/docs/mobile/programming/flutter/api-reference/
24+
2225
dcv_introduction: /capture-vision/docs/core/introduction/
2326

2427
dce_android_api: /camera-enhancer/docs/mobile/programming/android/

programming/flutter/api-reference/processed-document-result.md

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

3333
| Property | Types | Description |
3434
| -------- | ----- | ----------- |
35-
| [`originalImageHashId`](#originalimagehashid) | *String* | The hash id of the original image. |
36-
| [`rotationTransformMatrix`](#rotationtransformmatrix) | *Matrix4* | The rotation transformation matrix of the original image relative to the rotated image. |
37-
| [`errorCode`](#errorcode) | *int* | The error code of this result. |
38-
| [`errorMessage`](#errormessage) | *String* | The error message of this result. |
35+
| [`originalImageHashId`]({{ site.dcv_flutter_api }}core/captured-result-base.html#originalimagehashid) | *String* | The hash id of the original image. |
36+
| [`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. |
37+
| [`errorCode`]({{ site.dcv_flutter_api }}core/captured-result-base.html#errorcode) | *int* | The error code of this result. |
38+
| [`errorMessage`]({{ site.dcv_flutter_api }}core/captured-result-base.html#errormessage) | *String* | The error message of this result. |
3939

4040
### deskewedImageResultItems
4141

programming/flutter/api-reference/simplified-document-normalizer-settings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ class SimplifiedDocumentNormalizerSettings
3737

3838
### grayscaleTransformationModes
3939

40-
Defines the grayscale transformation modes with an array of [`EnumGrayscaleTransformationMode`]({{ site.dcv_enumerations }}core/grayscale-transformation-mode.html?lang=flutter) items. This parameter is important when working with inverted documents, and must be used in order to locate the inverted document boundary.
40+
Defines the grayscale transformation modes with an array of [`EnumGrayscaleTransformationMode`]({{ site.dcv_flutter_api }}core/enum/grayscale-transformation-mode.html) items. This parameter is important when working with inverted documents, and must be used in order to locate the inverted document boundary.
4141

4242
```dart
4343
List<EnumGrayscaleTransformationMode> grayscaleTransformationModes;
4444
```
4545

4646
### grayscaleEnhancementModes
4747

48-
Defines the grayscale enhancement modes with an array of [`EnumGrayscaleEnhancementModes`]({{ site.dcv_enumerations }}core/grayscale-enhancement-modes.html?lang=flutter) items. This parameter can be quite powerful in increasing the border detection rate of your application should you experience any trouble in that area. To learn more about the `grayscaleEnhancementModes` and how they can be used, please visit the main [GrayscaleEnhancementModes]({{ site.dcv_parameters }}reference/image-parameter/grayscale-enhancement-modes.html) parameter page.
48+
Defines the grayscale enhancement modes with an array of [`EnumGrayscaleEnhancementModes`]({{ site.dcv_flutter_api }}core/enum/grayscale-enhancement-modes.html) items. This parameter can be quite powerful in increasing the border detection rate of your application should you experience any trouble in that area. To learn more about the `grayscaleEnhancementModes` and how they can be used, please visit the main [GrayscaleEnhancementModes]({{ site.dcv_parameters }}reference/image-parameter/grayscale-enhancement-modes.html) parameter page.
4949

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

5454
### colourMode
5555

56-
Defines the colour mode of the normalized image with an [`EnumImageColourMode`]({{ site.dcv_enumerations }}document-normalizer/image-colour-mode.html?lang=flutter) member. By default, the normalized image will output in colour. In order to make the result image grayscale or binary, setting the `colourMode` to the corresponding pixel type will do the trick.
56+
Defines the colour mode of the normalized image with an [`EnumImageColourMode`]({{ site.dcv_flutter_api }}core/enum/image-colour-mode.html) member. By default, the normalized image will output in colour. In order to make the result image grayscale or binary, setting the `colourMode` to the corresponding pixel type will do the trick.
5757

5858
```dart
5959
EnumImageColourMode colourMode;

0 commit comments

Comments
 (0)