Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ dcv_ios_api: /capture-vision/docs/mobile/programming/ios/api-reference/
dcv_android: /capture-vision/docs/mobile/programming/android/
dcv_android_api: /capture-vision/docs/mobile/programming/android/api-reference/

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

dcv_introduction: /capture-vision/docs/core/introduction/

dce_android_api: /camera-enhancer/docs/mobile/programming/android/
Expand Down
4 changes: 2 additions & 2 deletions programming/maui/api-reference/detected-quads-result.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ IList<DetectedQuadResultItem> Items { get; }

### RotationTransformMatrix

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

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

### OriginalImageHashId

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

```csharp
string OriginalImageHashId { get; }
Expand Down
14 changes: 7 additions & 7 deletions programming/maui/api-reference/normalized-image-result-item.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ noTitleIndex: true

# NormalizedImageResultItem

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

## Definition

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

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

| Property | Type | Description |
| -------- | ---- | ----------- |
| [`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. |
| [`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. |
| [`TaskName`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#taskname) | *string* | The name of the task that generated the result. |
| [`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. |
| [`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. |
| [`TaskName`]({{ site.dcv_maui_api }}core/captured-result-item.html#taskname) | *string* | The name of the task that generated the result. |

### ImageData

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

```csharp
ImageData ImageData { get; }
```

### Location

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.
The [Quadrilateral]({{ site.dcv_maui_api }}core/quadrilateral.html) that represents the location of the normalized image within the original image or frame.

```csharp
Quadrilateral Location { get; }
Expand Down
2 changes: 1 addition & 1 deletion programming/maui/api-reference/normalized-images-result.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ IList<NormalizedImageResultItem> Items { get; }

### RotationTransformMatrix

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

```csharp
Matrix RotationTransformMatrix { get; }
Expand Down