Skip to content

Commit fa176df

Browse files
Adding v2
1 parent b466d2e commit fa176df

31 files changed

+312
-8836
lines changed

programming/android/api-reference/detected-quad-result-item-v2.4.2000.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

programming/android/api-reference/detected-quad-result-item.md

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `DetectedQuadResultItem` class is an extension of the [`CapturedResultItem`]
1616

1717
*Namespace:* com.dynamsoft.ddn
1818

19-
*Assembly:* DynamsoftCaptureVisionBundle.aar
19+
*Assembly:* DynamsoftDocumentNormalizer.aar
2020

2121
```java
2222
class DetectedQuadResultItem extends CapturedResultItem
@@ -26,18 +26,17 @@ class DetectedQuadResultItem extends CapturedResultItem
2626

2727
| Methods | Description |
2828
| ------- | ----------- |
29-
| [`getLocation`](#getlocation) | Returns a Quadrilateral object as the location of current object. |
29+
| [`getLocation`](#getlocation) | Get a Quadrilateral object as the location of current object. |
3030
| [`getConfidenceAsDocumentBoundary`](#getconfidenceasdocumentboundary) | Returns the confidence score of the detected quadrilateral's boundary, measuring the certainty that the detected quadrilateral represents the boundary of a document. |
31-
| [`getCrossVerificationStatus`](#getcrossverificationstatus) | Returns the cross verification status of the result item. |
3231

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

3534
| Method | Description |
3635
| ------ | ----------- |
37-
| [`getType`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettype) | Returns the type of the captured result item, indicating what kind of data it represents. |
38-
| [`getReferencedItem`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#getreferenceditem) | Returns a property of type `CapturedResultItem` that represents a reference to another captured result item. |
39-
| [`getTargetROIDefName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettargetroidefname) | Returns the name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} object which includes a task that generated the result. |
40-
| [`getTaskName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettaskname) | Returns the name of the task that generated the result. |
36+
| [`getType`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettype) | Get the type of the captured result item, indicating what kind of data it represents. |
37+
| [`getReferencedItem`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#getreferenceditem) | Get a property of type `CapturedResultItem` that represents a reference to another captured result item. |
38+
| [`getTargetROIDefName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettargetroidefname) | Gets the name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/){:target="_blank"} object which includes a task that generated the result. |
39+
| [`getTaskName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettaskname) | The name of the task that generated the result. |
4140

4241
### getLocation
4342

@@ -62,15 +61,3 @@ int getConfidenceAsDocumentBoundary();
6261
**Return Value**
6362

6463
The confidence as document boundary of current object.
65-
66-
### getCrossVerificationStatus
67-
68-
Returns the cross verification status of the result. The cross verification status determines whether the result item is approved by the multi-frame cross verification mechanism. If approved, the cross verification status is `CVS_PASSED`. Otherwise, it is `CVS_FAILED`.
69-
70-
```java
71-
EnumCrossVerificationStatus getCrossVerificationStatus();
72-
```
73-
74-
**Return Value**
75-
76-
Returns the cross verification status of type [`EnumCrossVerificationStatus`]({{ site.dcv_enumerations }}core/cross-verification-status.html).

programming/android/api-reference/normalized-image-result-item-v2.4.2000.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

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

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `NormalizedImageResultItem` class is an extension of [`CapturedResultItem`](
1616

1717
*Namespace:* com.dynamsoft.ddn
1818

19-
*Assembly:* DynamsoftCaptureVisionBundle.aar
19+
*Assembly:* DynamsoftDocumentNormalizer.aar
2020

2121
```java
2222
class NormalizedImageResultItem extends CapturedResultItem
@@ -26,18 +26,17 @@ class NormalizedImageResultItem extends CapturedResultItem
2626

2727
| Methods | Description |
2828
| ---------- | ----------- |
29-
| [`getImageData`](#getimagedata) | Returns an `ImageData` object as the normalized image. |
30-
| [`getLocation`](#getlocation) | Returns the quadrilateral from which you get the normalized image result item. |
31-
| [`getCrossVerificationStatus`](#getcrossverificationstatus) | Returns the cross verification status of the result item. |
29+
| [`getImageData`](#getimagedata) | Gets an `ImageData` object as the normalized image. |
30+
| [`getLocation`](#getlocation) | The quadrilateral from which you get the normalized image result item. |
3231

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

3534
| Method | Description |
3635
| ------ | ----------- |
37-
| [`getType`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettype) | Returns the type of the captured result item, indicating what kind of data it represents. |
38-
| [`getReferencedItem`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#getreferenceditem) | Returns a property of type `CapturedResultItem` that represents a reference to another captured result item. |
39-
| [`getTargetROIDefName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettargetroidefname) | Returns the name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/) object which includes a task that generated the result. |
40-
| [`getTaskName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettaskname) | Returns the name of the task that generated the result. |
36+
| [`getType`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettype) | Get the type of the captured result item, indicating what kind of data it represents. |
37+
| [`getReferencedItem`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#getreferenceditem) | Get a property of type `CapturedResultItem` that represents a reference to another captured result item. |
38+
| [`getTargetROIDefName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettargetroidefname) | Gets the name of the [`TargetROIDef`]({{ site.dcv_parameters_reference }}target-roi-def/) object which includes a task that generated the result. |
39+
| [`getTaskName`]({{ site.dcv_android_api }}core/basic-structures/captured-result-item.html#gettaskname) | The name of the task that generated the result. |
4140

4241
### getImageData
4342

@@ -62,15 +61,3 @@ Quadrilateral getLocation();
6261
**Return Value**
6362

6463
The quadrilateral from which you get the normalized image result item.
65-
66-
### getCrossVerificationStatus
67-
68-
Returns the cross verification status of the result item. The cross verification status determines whether the result item is approved by the multi-frame cross verification mechanism. If approved, the cross verification status is `CVS_PASSED`. Otherwise, it is `CVS_FAILED`.
69-
70-
```java
71-
EnumCrossVerificationStatus getCrossVerificationStatus();
72-
```
73-
74-
**Return Value**
75-
76-
Returns the cross verification status of type [`EnumCrossVerificationStatus`]({{ site.dcv_enumerations }}core/cross-verification-status.html).

programming/android/api-reference/simplified-document-normalizer-settings-v2.2.3000.md

Lines changed: 0 additions & 132 deletions
This file was deleted.

0 commit comments

Comments
 (0)