-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from dynamsoft-docs/preview
Preview
- Loading branch information
Showing
51 changed files
with
972 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
...api-reference/capture-vision-router/auxiliary-classes/buffered-items-manager.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
layout: default-layout | ||
title: BufferedItemsManager - Dynamsoft Capture Vision Router Module Android Edition API Reference | ||
description: The BufferedItemsManager class of DCV Android edition is used to manage the buffered items. | ||
keywords: buffered items, manager, Java, Kotlin | ||
needGenerateH3Content: true | ||
needAutoGenerateSidebar: true | ||
noTitleIndex: true | ||
--- | ||
|
||
# BufferedItemsManager | ||
|
||
The `BufferedItemsManager` class is used to manage the buffered items. | ||
|
||
## Definition | ||
|
||
*Namespace:* com.dynamsoft.cvr | ||
|
||
*Assembly:* DynamsoftCaptureVisionRouter.aar | ||
|
||
```java | ||
class BufferedItemsManager | ||
``` | ||
|
||
## Methods | ||
|
||
| Method | Description | | ||
|------- |-------------| | ||
| [`setMaxBufferedItems`](#setmaxbuffereditems) | Set the maximum number of buffered items. | | ||
| [`getMaxBufferedItems`](#getmaxbuffereditems) | Get the maximum number of buffered items. | | ||
| [`getBufferedCharacterItemSet`](#getbufferedcharacteritemset) | Get the buffered item set. | | ||
|
||
### setMaxBufferedItems | ||
|
||
Set the maximum number of buffered items. | ||
|
||
```java | ||
void setMaxBufferedItems(int count); | ||
``` | ||
|
||
**Parameters** | ||
|
||
`[in] count`: The maximum number of buffered items. | ||
|
||
### getMaxBufferedItems | ||
|
||
Get the maximum number of buffered items. | ||
|
||
```java | ||
int getMaxBufferedItems(); | ||
``` | ||
|
||
**Return Value** | ||
|
||
The maximum number of buffered items. | ||
|
||
### getBufferedCharacterItemSet | ||
|
||
Get the buffered item set. | ||
|
||
```java | ||
BufferedCharacterItemSet getBufferedCharacterItemSet(); | ||
``` | ||
|
||
**Return Value** | ||
|
||
The buffered item set. |
109 changes: 109 additions & 0 deletions
109
...e-vision-router/auxiliary-classes/simplified-capture-vision-settings-v2.2.10.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
--- | ||
layout: default-layout | ||
title: SimplifiedCaptureVisionSettings - Dynamsoft Capture Vision Router Module Android Edition API Reference | ||
description: The class SimplifiedCaptureVisionSettings of Dynamsoft Capture Vision Router Module contains settings for capturing and recognizing images with the CaptureVisionRouter class. | ||
keywords: Capture Vision settings, Java, Kotlin | ||
needGenerateH3Content: true | ||
needAutoGenerateSidebar: true | ||
noTitleIndex: true | ||
--- | ||
|
||
# SimplifiedCaptureVisionSettings | ||
|
||
The `SimplifiedCaptureVisionSettings` class contains settings for capturing and recognizing images with the `CaptureVisionRouter` class. | ||
|
||
## Definition | ||
|
||
*Namespace:* com.dynamsoft.cvr | ||
|
||
*Assembly:* DynamsoftCaptureVisionRouter.aar | ||
|
||
```java | ||
class SimplifiedCaptureVisionSettings | ||
``` | ||
|
||
## Attributes | ||
|
||
| Attributes | Type | Description | | ||
| ---------- | ---- | ----------- | | ||
| [`capturedResultItemTypes`](#capturedresultitemtypes) | *int* | Specifies the type(s) of CapturedItem(s) that will be captured. | | ||
| [`roi`](#roi) | *[Quadrilateral](../../core/basic-structures/quadrilateral.md)* | Specifies the region of interest (ROI) where the image capture and recognition will take place. | | ||
| [`roiMeasuredInPercentage`](#roimeasuredinpercentage) | *boolean* | Specifies whether the ROI is measured in pixels or as a percentage of the image size. | | ||
| [`maxParallelTasks`](#maxparalleltasks) | *int* | Specifies the maximum number of parallel tasks that can be used for image capture and recognition. | | ||
| [`minImageCaptureInterval`](#minimagecaptureinterval) | *int* | Set the minimum capture interval. It is measured in millisecond. | | ||
| [`timeout`](#timeout) | *int* | Specifies the maximum time (in milliseconds) allowed for image capture and recognition. | | ||
| [`barcodeSettings`](#barcodesettings) | *[SimplifiedBarcodeReaderSettings]({{ site.dbr_android_api }}simplified-barcode-reader-settings.html) \** | Specifies the settings for `DynamsoftBarcodeReader` tasks. | | ||
| [`labelSettings`](#labelsettings) | *[SimplifiedLabelRecognizerSettings]({{ site.dlr_android_api }}simplified-label-recognizer-settings.html) \** | Specifies the settings for `DynamsoftLabelRecognizer` tasks. | | ||
| [`documentSettings`](#documentsettings) | *[SimplifiedDocumentNormalizerSettings]({{ site.ddn_android_api }}simplified-document-normalizer-settings.html) \** | Specifies the settings for `DynamsoftDocumentNormalizer` tasks. | | ||
|
||
### capturedResultItemTypes | ||
|
||
Specifies the type(s) of CapturedItem(s) that will be captured. | ||
|
||
```java | ||
int capturedResultItemTypes; | ||
``` | ||
|
||
### roi | ||
|
||
Specifies the region of interest (ROI) where the image capture and recognition will take place. | ||
|
||
```java | ||
Quadrilateral roi; | ||
``` | ||
|
||
### roiMeasuredInPercentage | ||
|
||
Specifies whether the ROI is measured in pixels or as a percentage of the image size. | ||
|
||
```java | ||
boolean roiMeasuredInPercentage; | ||
``` | ||
|
||
### maxParallelTasks | ||
|
||
Specifies the maximum number of parallel tasks that can be used for image capture and recognition. | ||
|
||
```java | ||
int maxParallelTasks; | ||
``` | ||
|
||
### minImageCaptureInterval | ||
|
||
Set the minimum capture interval. It is measured in millisecond. | ||
|
||
```java | ||
int minImageCaptureInterval; | ||
``` | ||
|
||
### timeout | ||
|
||
Specifies the maximum time (in milliseconds) allowed for image capture and recognition. | ||
|
||
```java | ||
int timeout; | ||
``` | ||
|
||
### barcodeSettings | ||
|
||
Specifies the settings for `DynamsoftBarcodeReader` tasks with a [`SimplifiedBarcodeReaderSettings`]({{ site.dbr_android_api }}simplified-barcode-reader-settings.html) object. | ||
|
||
```java | ||
SimplifiedBarcodeReaderSettings barcodeSettings; | ||
``` | ||
|
||
### labelSettings | ||
|
||
Specifies the settings for `DynamsoftLabelRecognizer` tasks with a [`SimplifiedLabelRecognizerSettings`]({{ site.dlr_android_api }}simplified-label-recognizer-settings.html) object. | ||
|
||
```java | ||
SimplifiedLabelRecognizerSettings labelSettings; | ||
``` | ||
|
||
### documentSettings | ||
|
||
Specifies the settings for `DynamsoftDocumentNormalizer` tasks with a [`SimplifiedDocumentNormalizerSettings`]({{ site.ddn_android_api }}simplified-document-normalizer-settings.html) object. | ||
|
||
```java | ||
SimplifiedDocumentNormalizerSettings documentSettings; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
programming/android/api-reference/capture-vision-router/buffered-items.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: default-layout | ||
title: Buffered Items APIs of CaptureVisionRouter - Dynamsoft Capture Vision Router Module Android Edition API Reference | ||
description: Buffered items APIs references for DCV Android Edition. | ||
keywords: capture vision, intermediate result, Java, Kotlin | ||
needGenerateH3Content: true | ||
needAutoGenerateSidebar: true | ||
noTitleIndex: true | ||
--- | ||
|
||
# Buffered Items | ||
|
||
## Methods | ||
|
||
| Method | Description | | ||
|------- |-------------| | ||
| [`getBufferedItemsManager`](#getbuffereditemsmanager) | Returns the manager instance of buffered items. | | ||
|
||
### getBufferedItemsManager | ||
|
||
Returns the manager instance of buffered items. | ||
|
||
```java | ||
BufferedItemsManager getBufferedItemsManager(); | ||
``` | ||
|
||
**Return Value** | ||
|
||
Returns the manager instance of buffered items. | ||
|
||
**Remarks** | ||
|
||
When the maximum number of buffered items is set to greater than 0, item buffering is enabled. Currently only character items can be buffered. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.