Skip to content

Commit 97f35fa

Browse files
Merge pull request #267 from dynamsoft-docs/preview
update to internal commit 24803bc8
2 parents b5306f9 + da2a44b commit 97f35fa

File tree

5 files changed

+35
-35
lines changed

5 files changed

+35
-35
lines changed

programming/maui/api-reference/barcode-result-item.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -22,35 +22,35 @@ The `BarcodeResultItem` class represents a barcode result item decoded by the ba
2222
class BarcodeResultItem extends CapturedResultItem
2323
```
2424

25-
## Methods
26-
27-
| Method | Description |
28-
| ------ | ----------- |
29-
| [`Format`](#format) | Get the format of the barcode. |
30-
| [`FormatString`](#formatstring) | Get the format text of the barcode. |
31-
| [`Text`](#text) | Get the decode text of the barcode. |
32-
| [`Bytes`](#bytes) | Get the decode byte of the barcode. |
33-
| [`Location`](#location) | Get the location of the barcode. |
34-
| [`Confidence`](#confidence) | Get the confidence of the decoding result. |
35-
| [`Angle`](#angle) | Get the rotation angle of the barcode. |
36-
| [`ModuleSize`](#modulesize) | Get the module size of the barcode. |
37-
| [`IsDPM`](#isdpm) | Check whether the barcode is a DPM barcode. |
38-
| [`IsMirrored`](#ismirrored) | Check whether the barcode is mirrored. |
39-
40-
The following methods are inherited from class [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html).
41-
42-
| Method | Description |
43-
| ------ | ----------- |
44-
| [`Type`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#type) | Get the type of the captured result item. |
45-
| [`TargetROIDefName`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#targetroidefname) | The name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} object which includes a task that generated the result. |
46-
| [`TaskName`]({{ site.dcv_maui_api }}core/basic-structures/captured-result-item.html#taskname) | The name of the task that generated the result. |
25+
## Properties
26+
27+
| Property | Type | Description |
28+
| -------- | ---- | ----------- |
29+
| [`Format`](#format) | *[EnumBarcodeFormat]({{ site.dbr_maui_api }}enum/barcode-format.html)* | Get the format of the barcode. |
30+
| [`FormatString`](#formatstring) | *string* | Get the format text of the barcode. |
31+
| [`Text`](#text) | *string* | Get the decode text of the barcode. |
32+
| [`Bytes`](#bytes) | *byte[]* | Get the decode byte of the barcode. |
33+
| [`Location`](#location) | *Quadrilateral* | Get the location of the barcode. |
34+
| [`Confidence`](#confidence) | *int* | Get the confidence of the decoding result. |
35+
| [`Angle`](#angle) | *int* | Get the rotation angle of the barcode. |
36+
| [`ModuleSize`](#modulesize) | *int* | Get the module size of the barcode. |
37+
| [`IsDPM`](#isdpm) | *bool* | Check whether the barcode is a DPM barcode. |
38+
| [`IsMirrored`](#ismirrored) | *bool* | Check whether the barcode is mirrored. |
39+
40+
The following properties are inherited from class [`CapturedResultItem`]({{ site.dcv_maui_api }}core/captured-result-item.html).
41+
42+
| Property | Type | Description |
43+
| -------- | ---- | ----------- |
44+
| [`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. |
45+
| [`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. |
46+
| [`TaskName`]({{ site.dcv_maui_api }}core/captured-result-item.html#taskname) | *string* | The name of the task that generated the result. |
4747

4848
### Format
4949

5050
Get the format of the barcode. This format will be one of the [`EnumBarcodeFormat`]({{site.dbr_maui_api}}enum/barcode-format.html) items.
5151

5252
```csharp
53-
long Format { get; }
53+
EnumBarcodeFormat Format { get; }
5454
```
5555

5656
### FormatString

programming/maui/api-reference/decoded-barcodes-result.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ The `DecodedBarcodesResult` class represents the result of a barcode reading pro
2222
class DecodedBarcodesResult
2323
```
2424

25-
## Methods
26-
27-
| Method | Description |
28-
| ------ | ----------- |
29-
| [`Items`](#items) | Get an array of `BarcodeResultItems`, which are the basic unit of the captured results. |
30-
| [`RotationTransformMatrix`](#rotationtransformmatrix) | Get the rotation transformation matrix of the original image relative to the rotated image. |
31-
| [`OriginalImageHashId`](#originalimagehashid) | Get the hash id of the source image. You can use this ID to get the source image via [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class. |
32-
| [`ErrorCode`](#errorcode) | Get the error code if an error occurs when processing the image. |
33-
| [`ErrorMessage`](#errormessage) | Get the error message if an error occurs when processing the image. |
25+
## Properties
26+
27+
| Property | Type | Description |
28+
| -------- | ---- | ----------- |
29+
| [`Items`](#items) | *List<BarcodeResultItem>* | Get an array of `BarcodeResultItems`, which are the basic unit of the captured results. |
30+
| [`RotationTransformMatrix`](#rotationtransformmatrix) | *Matrix* | Get the rotation transformation matrix of the original image relative to the rotated image. |
31+
| [`OriginalImageHashId`](#originalimagehashid) | *string* | Get the hash id of the source image. You can use this ID to get the source image via [`IntermediateResultManager`]({{ site.dcv_maui_api }}capture-vision-router/auxiliary-classes/intermediate-result-manager.html) class. |
32+
| [`ErrorCode`](#errorcode) | *int* | Get the error code if an error occurs when processing the image. |
33+
| [`ErrorMessage`](#errormessage) | *string* | Get the error message if an error occurs when processing the image. |
3434

3535
### Items
3636

programming/maui/api-reference/enum/barcode-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Enumeration `EnumBarcodeFormat` defines the supported barcode formats.
1919
*Assembly:* Dynamsoft.BarcodeReader.Maui
2020

2121
```csharp
22-
namespace Dynamsoft.DBR.Maui
22+
namespace Dynamsoft.BarcodeReader.Maui
2323
{
2424
public enum EnumBarcodeFormat : long
2525
{

programming/maui/api-reference/enum/deblur-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Enumeration `EnumDeblurMode` specifies the image processing algorithms applied t
1919
*Assembly:* Dynamsoft.BarcodeReader.Maui
2020

2121
```csharp
22-
namespace Dynamsoft.DBR.Maui
22+
namespace Dynamsoft.BarcodeReader.Maui
2323
{
2424
public enum EnumDeblurMode : long
2525
{

programming/maui/api-reference/enum/localization-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Enumeration `EnumLocalizationMode` specifies the strategies used to identify the
1919
*Assembly:* Dynamsoft.BarcodeReader.Maui
2020

2121
```csharp
22-
namespace Dynamsoft.DBR.Maui
22+
namespace Dynamsoft.BarcodeReader.Maui
2323
{
2424
public enum EnumLocalizationMode : long
2525
{

0 commit comments

Comments
 (0)