From 0782d34094bfd66b64c20c5e14182cd63872816d Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Tue, 5 Nov 2024 15:57:26 +0800 Subject: [PATCH] update to internal commit 34103d18 --- _config.yml | 2 ++ .../maui/api-reference/detected-quads-result.md | 4 ++-- .../api-reference/normalized-image-result-item.md | 14 +++++++------- .../maui/api-reference/normalized-images-result.md | 2 +- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/_config.yml b/_config.yml index 01c907d..4df0529 100644 --- a/_config.yml +++ b/_config.yml @@ -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/ diff --git a/programming/maui/api-reference/detected-quads-result.md b/programming/maui/api-reference/detected-quads-result.md index 83cce22..5a0a52e 100644 --- a/programming/maui/api-reference/detected-quads-result.md +++ b/programming/maui/api-reference/detected-quads-result.md @@ -42,7 +42,7 @@ IList 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; } @@ -50,7 +50,7 @@ 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; } diff --git a/programming/maui/api-reference/normalized-image-result-item.md b/programming/maui/api-reference/normalized-image-result-item.md index 09b723b..192e469 100644 --- a/programming/maui/api-reference/normalized-image-result-item.md +++ b/programming/maui/api-reference/normalized-image-result-item.md @@ -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 @@ -29,17 +29,17 @@ 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; } @@ -47,7 +47,7 @@ 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; } diff --git a/programming/maui/api-reference/normalized-images-result.md b/programming/maui/api-reference/normalized-images-result.md index 85d27c3..dd75964 100644 --- a/programming/maui/api-reference/normalized-images-result.md +++ b/programming/maui/api-reference/normalized-images-result.md @@ -41,7 +41,7 @@ IList 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; }