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
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/capture-vision-router/captured-result-filter.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ noTitleIndex: true
10
10
11
11
# CapturedResultFilter
12
12
13
-
Abstract class `CapturedResultFilter` is responsible for filtering captured results. It is officially implemented as [MultiFrameResultCrossFilter](multi-frame-result-cross-filter.md).
13
+
Abstract class `CapturedResultFilter` is responsible for filtering captured results. It is officially implemented as [MultiFrameResultCrossFilter](multi-frame-cross-filter.md).
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/capture-vision-router/captured-result.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,12 @@ noTitleIndex: true
12
12
13
13
The `CapturedResult` class represents the result of a capture operation on an image. Internally, `CapturedResult` stores an array of [`CapturedResultItem`](captured-result-item.md), each of which may be a barcode, text line, detected quad, normalized image, original image, or parsed item depending on the functional product that is used.
14
14
15
-
> [!TIP]
16
-
> In the context of the Barcode Reader, you will most likely be using the [`DecodedBarcodesResult`]({{ site.dbr_flutter_api }}barcode-reader/decoded-barcodes-result.html) as the main result type.
17
-
18
15
> [!NOTE]
19
-
> The type of `CapturedResult` is dependent on the functional product that is used by the Capture Vision Router instance. To learn about the different types of functional products that Capture Vision supports, please visit the [Capture Vision Introduction]({{ site.introduction }}index.html#functional-products).
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/capture-vision-router/simplified-capture-vision-settings.md
+19-5Lines changed: 19 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,9 @@ class SimplifiedCaptureVisionSettings
29
29
|[`maxParallelTasks`](#maxparalleltasks)|*int*| Determines the maximum number of parallel tasks allowed for image capture and recognition. |
30
30
|[`minImageCaptureInterval`](#minimagecaptureinterval)|*int*| Sets the minimum interval (in milliseconds) between image captures. |
31
31
|[`timeout`](#timeout)|*int*| Specifies the maximum time (in milliseconds) allowed for image capture and recognition. |
32
-
|[`barcodeSettings`](#barcodesettings)|*[SimplifiedBarcodeReaderSettings](simplified-barcode-reader-settings.md)*| The settings for the `DynamsoftBarcodeReader` tasks. |
32
+
|[`barcodeSettings`](#barcodesettings)|*[SimplifiedBarcodeReaderSettings]({{ site.dbr_flutter_api }}barcode-reader/simplified-barcode-reader-settings.html)*| The settings for the `DynamsoftBarcodeReader` tasks. |
33
+
|[`labelSettings`](#labelsettings)|*[SimplifiedLabelRecognizerSettings]({{ site.dbr_flutter_api }}simplified-label-recognizer-settings.html)*| The settings for the `DynamsoftBarcodeReader` tasks. |
34
+
|[`documentSettings`](#documentsettings)|*[SimplifiedDocumentNormalizerSettings]({{ site.dbr_flutter_api }}simplified-document-normalizer-settings.html)*| The settings for the `DynamsoftBarcodeReader` tasks. |
33
35
34
36
### roi
35
37
@@ -73,12 +75,24 @@ int Timeout { get; set; }
73
75
74
76
### barcodeSettings
75
77
76
-
The settings for the `DynamsoftBarcodeReader` tasks as a [`SimplifiedBarcodeReaderSettings`](simplified-barcode-reader-settings.md) object.
78
+
The settings for the `DynamsoftBarcodeReader` tasks as a [`SimplifiedBarcodeReaderSettings`]({{ site.dbr_flutter_api }}barcode-reader/simplified-barcode-reader-settings.html) object.
77
79
78
80
```dart
79
-
SimplifiedBarcodeReaderSettings barcodeSettings;
81
+
SimplifiedBarcodeReaderSettings? barcodeSettings;
80
82
```
81
83
82
-
**Remarks**
84
+
### labelSettings
83
85
84
-
If you would like to learn more on how to configure the Barcode Reader, please refer to the [User Guide (Foundational Edition)](../../foundational-user-guide.md#configuring-the-barcode-reader-optional).
86
+
The settings for the `DynamsoftLabelRecognizer` tasks as a [`SimplifiedLabelRecognizerSettings`]({{ site.dbr_flutter_api }}simplified-label-recognizer-settings.html) object.
87
+
88
+
```dart
89
+
SimplifiedLabelRecognizerSettings? labelSettings;
90
+
```
91
+
92
+
### documentSettings
93
+
94
+
The settings for the `DynamsoftDocumentNormalizer` tasks as a [`SimplifiedDocumentNormalizerSettings`]({{ site.dbr_flutter_api }}simplified-document-normalizer-settings.html) object.
Copy file name to clipboardExpand all lines: programming/flutter/api-reference/core/captured-result-item.md
+12-8Lines changed: 12 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,15 @@ noTitleIndex: true
12
12
13
13
The `CapturedResultItem` class represents the most basic item in the captured result. Depending on the type of the [`CapturedResult`](captured-result.md), the captured result item can be a barcode, a text line, a normalized image, a detected quad, a parsed item, or an original image.
14
14
15
-
> [!TIP]
16
-
> In the context of the Barcode Reader, you will most likely be using the [BarcodeResultItem]({{ site.dbr_flutter_api }}barcode-reader/barcode-result-item.html) as the main result type.
17
-
18
15
> [!NOTE]
19
-
> The type of `CapturedResultItem` is dependent on the functional product that is used by the Capture Vision Router instance. To learn about the different types of functional products that Capture Vision supports, please visit the [Capture Vision Introduction]({{ site.introduction }}index.html#functional-products).
|[`targetROIDefName`](#targetroidefname)|*String*| The name of the target region of interest (ROI) where the captured result was found. |
34
38
|[`taskName`](#taskname)|*String*| The name of the recognition task that produced the CapturedResultItem. |
35
-
|[`type`](#type)|[*EnumCapturedResultItemType*](../enum/captured-result-item-type.md)| The type of the captured result item. |
39
+
|[`type`](#type)|[*EnumCapturedResultItemType*](enum/captured-result-item-type.md)| The type of the captured result item. |
36
40
37
41
### targetROIDefName
38
42
39
-
Returns a string that represents the name of the target region of interest (ROI) where the captured result was found. The target ROI is where the recognition task is run, and it is defined in the Capture Vision template that is called when [`startCapturing`](capture-vision-router.md#startcapturing) or [`capture`](capture-vision-router.md#capture) is called.
43
+
Returns a string that represents the name of the target region of interest (ROI) where the captured result was found. The target ROI is where the recognition task is run, and it is defined in the Capture Vision template.
40
44
41
45
```dart
42
46
String targetROIDefName,
@@ -48,7 +52,7 @@ To learn more about the `TargetROIDef` object, please visit this [page]({{ site.
48
52
49
53
### taskName
50
54
51
-
Returns the name of the recognition task that produced the CapturedResultItem. The task name sets the functional product that will be used for the recognition task, and it is defined in the Capture Vision template that is called when [`startCapturing`](capture-vision-router.md#startcapturing) or [`capture`](capture-vision-router.md#capture) is called.
55
+
Returns the name of the recognition task that produced the CapturedResultItem. The task name sets the functional product that will be used for the recognition task, and it is defined in the Capture Vision template.
52
56
53
57
```dart
54
58
String taskName;
@@ -60,7 +64,7 @@ To learn more about how the tasks are set in the TargetROIDef object, please vis
60
64
61
65
### type
62
66
63
-
The type of the captured result item represented as a [`EnumCapturedResultItemType`](../enum/captured-result-item-type.md). Depending on the functional product used, the captured result item can be a barcode, a text line, a normalized image, a detected quad, a parsed item, or an original image.
67
+
The type of the captured result item represented as a [`EnumCapturedResultItemType`](enum/captured-result-item-type.md). Depending on the functional product used, the captured result item can be a barcode, a text line, a normalized image, a detected quad, a parsed item, or an original image.
0 commit comments