Skip to content

Commit dcd1c87

Browse files
Merge pull request #59 from dynamsoft-docs/preview
update to internal commit 34103d18
2 parents 1833bac + 0782d34 commit dcd1c87

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ dcv_ios_api: /capture-vision/docs/mobile/programming/ios/api-reference/
1515
dcv_android: /capture-vision/docs/mobile/programming/android/
1616
dcv_android_api: /capture-vision/docs/mobile/programming/android/api-reference/
1717

18+
dcv_maui_api: /capture-vision/docs/mobile/programming/maui/api-reference/
19+
1820
dcv_introduction: /capture-vision/docs/core/introduction/
1921

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

programming/maui/api-reference/detected-quads-result.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ IList<DetectedQuadResultItem> Items { get; }
4242

4343
### RotationTransformMatrix
4444

45-
The rotation transformation matrix of the original image relative to the rotated image. Please see [Matrix](https://developer.maui.com/reference/maui/opengl/Matrix){:target="_blank"} for more info.
45+
The rotation transformation matrix of the original image relative to the rotated image. Please see [Matrix](https://learn.microsoft.com/en-us/dotnet/api/microsoft.maui.controls.shapes.matrix?view=net-maui-8.0){:target="_blank"} for more info.
4646

4747
```csharp
4848
Matrix RotationTransformMatrix { get; }
4949
```
5050

5151
### OriginalImageHashId
5252

53-
The hash ID of the original image. You can use this ID to get the original image via [`IntermediateResultManager`]({{ site.dcv_maui_api }}core/intermediate-results/intermediate-result-manager.html) class.
53+
The hash ID of the original image. You can use this ID to get the original image via [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class.
5454

5555
```csharp
5656
string OriginalImageHashId { get; }

programming/maui/api-reference/normalized-image-result-item.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ noTitleIndex: true
1010

1111
# NormalizedImageResultItem
1212

13-
The `NormalizedImageResultItem` class is an extension of [`CapturedResultItem`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html) that represents a normalized image. This is the most basic unit of the normalized image result, one of the captured result types that the Capture Vision Router can output.
13+
The `NormalizedImageResultItem` class is an extension of [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html) that represents a normalized image. This is the most basic unit of the normalized image result, one of the captured result types that the Capture Vision Router can output.
1414

1515
## Definition
1616

@@ -29,25 +29,25 @@ class NormalizedImageResultItem
2929
| [`ImageData`](#imagedata) | *ImageData* | An `ImageData` object as the normalized image. |
3030
| [`Location`](#location) | *Quadrilateral* | The quadrilateral from which you get the normalized image result item. |
3131

32-
The following properties are inherited from [`CapturedResultItem`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html).
32+
The following properties are inherited from [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html).
3333

3434
| Property | Type | Description |
3535
| -------- | ---- | ----------- |
36-
| [`Type`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#type) | *[EnumCapturedResultItemType]({{ site.dcv_maui_api }}core/enum/captured-result-item-type.html)* | Get the type of the captured result item, indicating what kind of data it represents. |
37-
| [`TargetROIDefName`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#targetroidefname) | *string* | The name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} object which includes a task that generated the result. |
38-
| [`TaskName`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#taskname) | *string* | The name of the task that generated the result. |
36+
| [`Type`]({{ site.dcv_maui_api }}core/captured-result-item.html#type) | *[EnumCapturedResultItemType]({{ site.dcv_maui_api }}core/enum/captured-result-item-type.html)* | Get the type of the captured result item, indicating what kind of data it represents. |
37+
| [`TargetROIDefName`]({{ site.dcv_maui_api }}core/captured-result-item.html#targetroidefname) | *string* | The name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} object which includes a task that generated the result. |
38+
| [`TaskName`]({{ site.dcv_maui_api }}core/captured-result-item.html#taskname) | *string* | The name of the task that generated the result. |
3939

4040
### ImageData
4141

42-
An [`ImageData`]({{ site.dcv_maui_api }}core/basic-structures/image-data.html) object for the normalized image.
42+
An [`ImageData`]({{ site.dcv_maui_api }}core/image-data.html) object for the normalized image.
4343

4444
```csharp
4545
ImageData ImageData { get; }
4646
```
4747

4848
### Location
4949

50-
The [Quadrilateral]({{ site.dcv_maui_api }}core/basic-structures/quadrilateral.html) that represents the location of the normalized image within the original image or frame.
50+
The [Quadrilateral]({{ site.dcv_maui_api }}core/quadrilateral.html) that represents the location of the normalized image within the original image or frame.
5151

5252
```csharp
5353
Quadrilateral Location { get; }

programming/maui/api-reference/normalized-images-result.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ IList<NormalizedImageResultItem> Items { get; }
4141

4242
### RotationTransformMatrix
4343

44-
The rotation transformation matrix of the original image relative to the rotated image. Please see [Matrix](https://developer.maui.com/reference/maui/opengl/Matrix){:target="_blank"} for more info.
44+
The rotation transformation matrix of the original image relative to the rotated image. Please see [Matrix](https://learn.microsoft.com/en-us/dotnet/api/microsoft.maui.controls.shapes.matrix?view=net-maui-8.0){:target="_blank"} for more info.
4545

4646
```csharp
4747
Matrix RotationTransformMatrix { get; }

0 commit comments

Comments
 (0)