You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| [`getItems`](#getitems) | Get an array of `CapturedResultItems`, which are the basic unit of the captured results. A `CapturedResultItem` can be a original image, a decoded barcode, a recognized text, a detected quad, a normalized image or a parsed result. View CapturedResultItemType for all available types. |
38
38
| [`getDecodedBarcodesResult`](#getdecodedbarcodesresult) | Get a [`DecodedBarcodesResult`]({{ site.dbr_android_api }}decoded-barcodes-result.html) object that contains all the [`BarcodeResultItems`]({{ site.dbr_android_api }}barcode-result-item.html) in the `CapturedResult`.|
39
39
| [`getRecognizedTextLinesResult`](#getrecognizedtextlinesresult) |Get a [`RecognizedTextLinesResult`]({{ site.dlr_android_api }}recognized-text-lines-result.html) object that contains all the [`TextLineResultItems`]({{ site.dlr_android_api }}text-line-result-item.html) in the `CapturedResult`.|
40
-
| [`getDetectedQuadsResult`](#getdetectedquadsresult) |Get a [`DetectedQuadsResult`]({{ site.ddn_android_api }}detected-quads-result.html) object that contains all the [`DetectedQuadResultItem`]({{ site.ddn_android_api }}detected-quad-result-item.html) in the `CapturedResult`.|
41
-
| [`getNormalizedImagesResult`](#getnormalizedimagesresult) |Get a [`NormalizedImagesResult`]({{ site.ddn_android_api }}normalized-images-result.html) object that contains all the [`NormalizedImageResultItem`]({{ site.ddn_android_api }}normalized-image-result-item.html) in the `CapturedResult`.|
40
+
| [`getProcessedDocumentResult`](#getprocesseddocumentresult) |Get a [`ProcessedDocumentResult`]({{ site.ddn_android_api }}processed-document-result.html) object that contains all the results with the type of deskewed image, detected quads, and enhanced images. |
42
41
| [`getParsedResult`](#getparsedresult) |Get the parsed result. |
43
42
44
43
The following methods are inherited from [`CapturedResultBase`]({{ site.dcv_android_api }}core/basic-structures/captured-result-base.html):
A [`RecognizedTextLinesResult`]({{ site.dlr_android_api }}recognized-text-lines-result.html) that contains all the [`TextLineResultItems`]({{ site.dlr_android_api }}text-line-result-item.html) of the `CapturedResult`.
89
88
90
-
### getDetectedQuadsResult
89
+
### getProcessedDocumentResult
91
90
92
-
Get all the quad detection results of the `CapturedResult`.
91
+
Get a [`ProcessedDocumentResult`]({{ site.ddn_android_api }}processed-document-result.html) object that contains all the results with the type of deskewed image, detected quads, and enhanced images.
A [`DetectedQuadsResult`]({{ site.ddn_android_api }}detected-quads-result.html) that contains all the [`DetectedQuadResultItems`]({{ site.ddn_android_api }}detected-quad-result-item.html) of the `CapturedResult`.
99
+
A [`ProcessedDocumentResult`]({{ site.ddn_android_api }}detected-quads-result.html) object. It consists of:
101
100
102
-
### getNormalizedImagesResult
103
-
104
-
Get all the image normalization results of the `CapturedResult`.
A [`NormalizedImagesResult`]({{ site.ddn_android_api }}normalized-images-result.html) that contains all the [`NormalizedImageResultItems`]({{ site.ddn_android_api }}normalized-image-result-item.html) of the `CapturedResult`.
Copy file name to clipboardExpand all lines: programming/ios/api-reference/capture-vision-router/auxiliary-classes/captured-result.md
+5-23Lines changed: 5 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,7 @@ class CapturedResult : CapturedResultBase
36
36
|[`items`](#items)|*NSArray<DSCapturedResultItem*> \**| An array of `DSCapturedResultItems`, which are the basic item of the captured results. A `DSCapturedResultItem` can be an original image, a decoded barcode, a recognized text, a detected quad, a normalized image or a parsed result. View DSCapturedResultItemType for all available types. |
37
37
|[`decodedBarcodesResult`](#decodedbarcodesresult)|*DSDecodedBarcodesResult*| A [`DSDecodedBarcodesResult`]({{ site.dbr_ios_api }}decoded-barcodes-result.html) object that contains all the [`DSBarcodeResultItems`]({{ site.dbr_ios_api }}barcode-result-item.html) in the DSCapturedResult. |
38
38
|[`recognizedTextLinesResult`](#recognizedtextlinesresult)|*DSRecognizedTextLinesResult*| A [`DSRecognizedTextLinesResult`]({{ site.dlr_ios_api }}recognized-text-lines-result.html) object that contains all the [`DSTextLineResultItems`]({{ site.dlr_ios_api }}text-line-result-item.html) in the DSCapturedResult. |
39
-
|[`detectedQuadsResult`](#detectedquadsresult)|*DSDetectedQuadsResult*| A [`DSDetectedQuadsResult`]({{ site.ddn_ios_api }}detected-quads-result.html) object that contains all the [`DSDetectedQuadResultItem`]({{ site.ddn_ios_api }}detected-quad-result-item.html) in the DSCapturedResult. |
40
-
|[`normalizedImagesResult`](#normalizedimagesresult)|*DSNormalizedImagesResult*| A [`DSNormalizedImagesResult`]({{ site.ddn_ios_api }}normalized-images-result.html) object that contains all the [`DSNormalizedImageResultItem`]({{ site.ddn_ios_api }}normalized-image-result-item.html) in the DSCapturedResult. |
39
+
|[`processedDocumentResult`](#processeddocumentresult)|*DSProcessedDocumentResult*| A [`DSProcessedDocumentResult`]({{ site.ddn_ios_api }}processed-document-result.html) object that contains all the results with the type of deskewed image, detected quads, and enhanced images. |
41
40
|[`parsedResult`](#parsedresult)|*DSParsedResult*| A [`DSParsedResult`]({{ site.dcp_ios_api }}parsed-result.html) object that contains all the [`DSParsedResultItem`]({{ site.dcp_ios_api }}parsed-result-item.html) in the DSCapturedResult. |
42
41
43
42
The following attributes are inherited from [`DSCapturedResultBase`]({{ site.dcv_ios_api }}core/basic-structures/captured-result-base.html):
@@ -101,38 +100,21 @@ A [`DSRecognizedTextLinesResult`]({{site.dlr_ios_api}}recognized-text-lines-resu
101
100
var recognizedTextLinesResult: RecognizedTextLinesResult? { get }
102
101
```
103
102
104
-
### detectedQuadsResult
103
+
### processedDocumentResult
105
104
106
-
A [`DSDetectedQuadsResult`]({{site.ddn_ios_api}}detected-quads-result.html) object that contains all the [`DSDetectedQuadResultItem`]({{ site.ddn_ios_api }}detected-quad-result-item.html) in the DSCapturedResult.
105
+
A [`DSProcessedDocumentResult`]({{site.ddn_ios_api }}processed-document-result.html) object that contains all the results with the type of deskewed image, detected quads, and enhanced images.
var detectedQuadsResult: DetectedQuadsResult? { get }
119
-
```
120
-
121
-
### normalizedImagesResult
122
-
123
-
A [`DSNormalizedImagesResult`]({{site.ddn_ios_api}}normalized-images-result.html) object that contains all the [`DSNormalizedImageResultItem`]({{ site.ddn_ios_api }}normalized-image-result-item.html) in the DSCapturedResult.
0 commit comments