Skip to content

Commit 156028f

Browse files
update to internal commit a96c6849
1 parent 016bc0c commit 156028f

File tree

12 files changed

+92
-92
lines changed

12 files changed

+92
-92
lines changed

programming/android/api-reference/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ The Dynamsoft Document Normalizer (DDN) SDK is built on the Dynamsoft Capture Vi
2020

2121
The table below describes details the functionalities of these modules:
2222

23-
| Module |Description | Mandatory/Optional|
24-
|:--------|:------------|:---|
25-
| `DynamsoftCaptureVisionRouter.aar`(CVR) | Provides APIs for single/multiple images processing, setting configurations, and other features. | Mandatory |
26-
| `DynamsoftDocumentNormalizer.aar`(DDN) | This library mainly provides boundary detection & document normalization algorithms. It includes APIs for you to configure detection & normalization settings and obtaining the processing results. | Mandatory |
27-
| `DynamsoftCore.aar`(Core) | Provides basic structures and intermediate result related APIs. | Mandatory |
28-
| `DynamsoftImageProcessing.aar`(DIP) | This library mainly provides image processing algorithms. | Mandatory |
29-
| `DynamsoftLicense.aar`(License) | Provides license activation or management APIs. | Mandatory |
30-
| `DynamsoftCameraEnhancer.aar`(DCE) | The <a href="/camera-enhancer/docs/mobile/programming/android/" target="_blank">Dynamsoft Camera Enhancer (DCE) SDK</a> provides camera control, camera enhancements, and basic UI configuration features. | Optional |
31-
| `DynamsoftUtility.aar`(Utility) | The utility library, which includes multiple implementations of image source adapters, result filter, image exporter, and other utility APIs etc. | Optional |
23+
| Module | Description | Mandatory/Optional |
24+
|:-------|:------------|:-------------------|
25+
| `DynamsoftDocumentNormalizer.aar`(DDN) | The Dynamsoft Document Normalizer module extracts structural information from document images, including document boundaries, shadow areas, and text areas. It uses this information to generate normalized document images through processes such as deskewing, shadow removal, and distortion correction. | Mandatory |
26+
| `DynamsoftCore.aar`(Core) | The Dynamsoft Core module lays the foundation for Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. It encapsulates the basic classes, interfaces, and enumerations shared by these SDKs. | Mandatory |
27+
| `DynamsoftCaptureVisionRouter.aar`(CVR) | The Dynamsoft Capture Vision Router module is the cornerstone of the Dynamsoft Capture Vision (DCV) architecture. It focuses on coordinating batch image processing and provides APIs for setting up image sources and result receivers, configuring workflows with parameters, and controlling processes. | Mandatory |
28+
| `DynamsoftImageProcessing.aar`(DIP) | The Dynamsoft Image Processing module facilitates digital image processing and supports operations for other modules, including the Barcode Reader, Label Recognizer, and Document Normalizer. | Mandatory |
29+
| `DynamsoftLicense.aar`(License) | The Dynamsoft License module manages the licensing aspects of Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Mandatory |
30+
| `DynamsoftCameraEnhancer.aar`(DCE) | The [Dynamsoft Camera Enhancer]({{ site.dce_android_api }}){:target="_blank"} module controls the camera, transforming it into an image source for the DCV (Dynamsoft Capture Vision) architecture through ISA implementation. It also enhances image quality during acquisition and provides basic viewers for user interaction. | Mandatory |
31+
| `DynamsoftUtility.aar`(Utility) | The Dynamsoft Utility module defines auxiliary classes, including the ImageManager, and implementations of the CRF (Captured Result Filter) and ISA (Image Source Adapter) . These are shared by all Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Optional |
3232

3333
## Main APIs
3434

programming/android/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The best way to start with the Dynamsoft Document Normalizer Android Edition is
2525
## License Subscription
2626

2727
To develop and run your application with Dynamsoft Document Normalizer SDK, you need an active license key:
28-
* <a href="https://www.dynamsoft.com/customer/license/trialLicense?utm_source=doc&product=ddn&package=mobile" target="_blank">Request a 30-day free trial license</a>
28+
* <a href="https://www.dynamsoft.com/customer/license/trialLicense?utm_source=docs&product=ddn&package=mobile" target="_blank">Request a 30-day free trial license</a>
2929

3030
## Other Edition
3131

programming/android/user-guide-v2.0.10.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ There are two ways to add the SDK into your project - **Manually** and **Maven**
6969

7070
1. Download the SDK package from the <a href="https://download2.dynamsoft.com/ddn/dynamsoft-document-normalizer-android-2.0.10.zip" target="_blank">Dynamsoft website</a>. After unzipping, You can find the following **aar** files under the **Dynamsoft\Libs** directory:
7171

72-
| File | Description |
73-
|---------|-------------|
74-
| `DynamsoftCaptureVisionRouter.aar` | The capture vision router library of Dynamsoft's capture vision SDK is used by users to interact with image processing and semantic processing products in their applications. It takes an image source as input and provides processing results, which can include final results or intermediate results. |
75-
| `DynamsoftDocumentNormalizer.aar` | The document normalizer library of Dynamsoft's capture vision SDK includes document normalizer related algorithms and APIs. |
76-
| `DynamsoftCore.aar` | The core library of Dynamsoft's capture vision SDK includes common basic structures and intermediate result related APIs. |
77-
| `DynamsoftImageProcessing.aar` | The image processing library of Dynamsoft's capture vision SDK incorporates a collection of basic and specialized image processing algorithms designed to support other SDK modules such as Document Normalizer. |
78-
| `DynamsoftLicense.aar` | The license library of Dynamsoft's capture vision SDK includes license related APIs. |
79-
| `DynamsoftUtility.aar` | The utility library of Dynamsoft's Capture Vision SDK includes multiple implementations of image source adapters, image exporter, and other utility APIs. |
80-
| `DynamsoftCameraEnhancer.aar` | The Dynamsoft Camera Enhancer SDK provides camera control, camera enhancements, and basic UI configuration features. |
72+
| File | Description | Mandatory/Optional |
73+
|:-----|:------------|:-------------------|
74+
| `DynamsoftDocumentNormalizer.aar` | The Dynamsoft Document Normalizer module extracts structural information from document images, including document boundaries, shadow areas, and text areas. It uses this information to generate normalized document images through processes such as deskewing, shadow removal, and distortion correction. | Mandatory |
75+
| `DynamsoftCore.aar` | The Dynamsoft Core module lays the foundation for Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. It encapsulates the basic classes, interfaces, and enumerations shared by these SDKs. | Mandatory |
76+
| `DynamsoftCaptureVisionRouter.aar` | The Dynamsoft Capture Vision Router module is the cornerstone of the Dynamsoft Capture Vision (DCV) architecture. It focuses on coordinating batch image processing and provides APIs for setting up image sources and result receivers, configuring workflows with parameters, and controlling processes. | Mandatory |
77+
| `DynamsoftImageProcessing.aar` | The Dynamsoft Image Processing module facilitates digital image processing and supports operations for other modules, including the Barcode Reader, Label Recognizer, and Document Normalizer. | Mandatory |
78+
| `DynamsoftLicense.aar` | The Dynamsoft License module manages the licensing aspects of Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Mandatory |
79+
| `DynamsoftCameraEnhancer.aar` | The [Dynamsoft Camera Enhancer]({{ site.dce_android_api }}){:target="_blank"} module controls the camera, transforming it into an image source for the DCV (Dynamsoft Capture Vision) architecture through ISA implementation. It also enhances image quality during acquisition and provides basic viewers for user interaction. | Mandatory |
80+
| `DynamsoftUtility.aar` | The Dynamsoft Utility module defines auxiliary classes, including the ImageManager, and implementations of the CRF (Captured Result Filter) and ISA (Image Source Adapter) . These are shared by all Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Optional |
8181

8282
2. Copy the above five **aar** files to the target directory `HelloWorld\app\libs`
8383

programming/android/user-guide-v2.0.20.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ There are two ways to add the SDK into your project - **Manually** and **Maven**
6969

7070
1. Download the SDK package from the <a href="https://download2.dynamsoft.com/ddn/dynamsoft-document-normalizer-android-2.0.20.zip" target="_blank">Dynamsoft website</a>. After unzipping, You can find the following **aar** files under the **Dynamsoft\Libs** directory:
7171

72-
| File | Description |
73-
|---------|-------------|
74-
| `DynamsoftCaptureVisionRouter.aar` | The capture vision router library of Dynamsoft's capture vision SDK is used by users to interact with image processing and semantic processing products in their applications. It takes an image source as input and provides processing results, which can include final results or intermediate results. |
75-
| `DynamsoftDocumentNormalizer.aar` | The document normalizer library of Dynamsoft's capture vision SDK includes document normalizer related algorithms and APIs. |
76-
| `DynamsoftCore.aar` | The core library of Dynamsoft's capture vision SDK includes common basic structures and intermediate result related APIs. |
77-
| `DynamsoftImageProcessing.aar` | The image processing library of Dynamsoft's capture vision SDK incorporates a collection of basic and specialized image processing algorithms designed to support other SDK modules such as Document Normalizer. |
78-
| `DynamsoftLicense.aar` | The license library of Dynamsoft's capture vision SDK includes license related APIs. |
79-
| `DynamsoftUtility.aar` | The utility library of Dynamsoft's Capture Vision SDK includes multiple implementations of image source adapters, image exporter, and other utility APIs. |
80-
| `DynamsoftCameraEnhancer.aar` | The Dynamsoft Camera Enhancer SDK provides camera control, camera enhancements, and basic UI configuration features. |
72+
| File | Description | Mandatory/Optional |
73+
|:-----|:------------|:-------------------|
74+
| `DynamsoftDocumentNormalizer.aar` | The Dynamsoft Document Normalizer module extracts structural information from document images, including document boundaries, shadow areas, and text areas. It uses this information to generate normalized document images through processes such as deskewing, shadow removal, and distortion correction. | Mandatory |
75+
| `DynamsoftCore.aar` | The Dynamsoft Core module lays the foundation for Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. It encapsulates the basic classes, interfaces, and enumerations shared by these SDKs. | Mandatory |
76+
| `DynamsoftCaptureVisionRouter.aar` | The Dynamsoft Capture Vision Router module is the cornerstone of the Dynamsoft Capture Vision (DCV) architecture. It focuses on coordinating batch image processing and provides APIs for setting up image sources and result receivers, configuring workflows with parameters, and controlling processes. | Mandatory |
77+
| `DynamsoftImageProcessing.aar` | The Dynamsoft Image Processing module facilitates digital image processing and supports operations for other modules, including the Barcode Reader, Label Recognizer, and Document Normalizer. | Mandatory |
78+
| `DynamsoftLicense.aar` | The Dynamsoft License module manages the licensing aspects of Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Mandatory |
79+
| `DynamsoftCameraEnhancer.aar` | The [Dynamsoft Camera Enhancer]({{ site.dce_android_api }}){:target="_blank"} module controls the camera, transforming it into an image source for the DCV (Dynamsoft Capture Vision) architecture through ISA implementation. It also enhances image quality during acquisition and provides basic viewers for user interaction. | Mandatory |
80+
| `DynamsoftUtility.aar` | The Dynamsoft Utility module defines auxiliary classes, including the ImageManager, and implementations of the CRF (Captured Result Filter) and ISA (Image Source Adapter) . These are shared by all Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Optional |
8181

8282
2. Copy the above five **aar** files to the target directory `HelloWorld\app\libs`
8383

programming/android/user-guide-v2.2.10.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ There are two ways to add the SDK into your project - **Manually** and **Maven**
6969

7070
1. Download the SDK package from the <a href="https://download2.dynamsoft.com/ddn/dynamsoft-document-normalizer-android-2.2.10.zip" target="_blank">Dynamsoft website</a>. After unzipping, You can find the following **aar** files under the **Dynamsoft\Libs** directory:
7171

72-
| File | Description |
73-
|---------|-------------|
74-
| `DynamsoftDocumentNormalizer.aar` | The Dynamsoft Document Normalizer SDK which includes the document normalizer related APIs. |
75-
| `DynamsoftCore.aar` | The core library of the Dynamsoft Capture Vision SDK which includes basic structures and intermediate result related APIs. |
76-
| `DynamsoftCaptureVisionRouter.aar` | The CaptureVisionRouter is used to coordinate the image-processing and semantic-processing products that are being used in the application. It accepts an image source and returns processing results which may contain final results or intermediate results. |
77-
| `DynamsoftImageProcessing.aar` | The image processing library of the Dynamsoft Capture Vision SDK, and so includes the image processing algorithms and APIs. |
78-
| `DynamsoftLicense.aar` | This module includes the licensing API. |
79-
| `DynamsoftCameraEnhancer.aar` | The [Dynamsoft Camera Enhancer SDK]({{ site.dce_android_api }}) defines the camera control and frame preprocessing API. |
80-
| `DynamsoftUtility.aar (Optional)` | The module includes functional APIs that support you to integrate the input, filtering the results, generating result images, etc. |
72+
| File | Description | Mandatory/Optional |
73+
|:-----|:------------|:-------------------|
74+
| `DynamsoftDocumentNormalizer.aar` | The Dynamsoft Document Normalizer module extracts structural information from document images, including document boundaries, shadow areas, and text areas. It uses this information to generate normalized document images through processes such as deskewing, shadow removal, and distortion correction. | Mandatory |
75+
| `DynamsoftCore.aar` | The Dynamsoft Core module lays the foundation for Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. It encapsulates the basic classes, interfaces, and enumerations shared by these SDKs. | Mandatory |
76+
| `DynamsoftCaptureVisionRouter.aar` | The Dynamsoft Capture Vision Router module is the cornerstone of the Dynamsoft Capture Vision (DCV) architecture. It focuses on coordinating batch image processing and provides APIs for setting up image sources and result receivers, configuring workflows with parameters, and controlling processes. | Mandatory |
77+
| `DynamsoftImageProcessing.aar` | The Dynamsoft Image Processing module facilitates digital image processing and supports operations for other modules, including the Barcode Reader, Label Recognizer, and Document Normalizer. | Mandatory |
78+
| `DynamsoftLicense.aar` | The Dynamsoft License module manages the licensing aspects of Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Mandatory |
79+
| `DynamsoftCameraEnhancer.aar` | The [Dynamsoft Camera Enhancer]({{ site.dce_android_api }}){:target="_blank"} module controls the camera, transforming it into an image source for the DCV (Dynamsoft Capture Vision) architecture through ISA implementation. It also enhances image quality during acquisition and provides basic viewers for user interaction. | Mandatory |
80+
| `DynamsoftUtility.aar` | The Dynamsoft Utility module defines auxiliary classes, including the ImageManager, and implementations of the CRF (Captured Result Filter) and ISA (Image Source Adapter) . These are shared by all Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Optional |
8181

8282
2. Copy the above six (seven if the Utility is included) **aar** files to the target directory `HelloWorld\app\libs`
8383

programming/android/user-guide.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ There are two ways to add the SDK into your project - **Manually** and **Maven**
6969

7070
1. Download the SDK package from the <a href="https://download2.dynamsoft.com/ddn/dynamsoft-document-normalizer-android-2.2.10.zip" target="_blank">Dynamsoft website</a>. After unzipping, You can find the following **aar** files under the **Dynamsoft\Libs** directory:
7171

72-
| File | Description |
73-
|---------|-------------|
74-
| `DynamsoftDocumentNormalizer.aar` | The Dynamsoft Document Normalizer SDK which includes the document normalizer related APIs. |
75-
| `DynamsoftCore.aar` | The core library of the Dynamsoft Capture Vision SDK which includes basic structures and intermediate result related APIs. |
76-
| `DynamsoftCaptureVisionRouter.aar` | The CaptureVisionRouter is used to coordinate the image-processing and semantic-processing products that are being used in the application. It accepts an image source and returns processing results which may contain final results or intermediate results. |
77-
| `DynamsoftImageProcessing.aar` | The image processing library of the Dynamsoft Capture Vision SDK, and so includes the image processing algorithms and APIs. |
78-
| `DynamsoftLicense.aar` | This module includes the licensing API. |
79-
| `DynamsoftCameraEnhancer.aar` | The [Dynamsoft Camera Enhancer SDK]({{ site.dce_android_api }}) defines the camera control and frame preprocessing API. |
80-
| `DynamsoftUtility.aar (Optional)` | The module includes functional APIs that support you to integrate the input, filtering the results, generating result images, etc. |
72+
| File | Description | Mandatory/Optional |
73+
|:-----|:------------|:-------------------|
74+
| `DynamsoftDocumentNormalizer.aar` | The Dynamsoft Document Normalizer module extracts structural information from document images, including document boundaries, shadow areas, and text areas. It uses this information to generate normalized document images through processes such as deskewing, shadow removal, and distortion correction. | Mandatory |
75+
| `DynamsoftCore.aar` | The Dynamsoft Core module lays the foundation for Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. It encapsulates the basic classes, interfaces, and enumerations shared by these SDKs. | Mandatory |
76+
| `DynamsoftCaptureVisionRouter.aar` | The Dynamsoft Capture Vision Router module is the cornerstone of the Dynamsoft Capture Vision (DCV) architecture. It focuses on coordinating batch image processing and provides APIs for setting up image sources and result receivers, configuring workflows with parameters, and controlling processes. | Mandatory |
77+
| `DynamsoftImageProcessing.aar` | The Dynamsoft Image Processing module facilitates digital image processing and supports operations for other modules, including the Barcode Reader, Label Recognizer, and Document Normalizer. | Mandatory |
78+
| `DynamsoftLicense.aar` | The Dynamsoft License module manages the licensing aspects of Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Mandatory |
79+
| `DynamsoftCameraEnhancer.aar` | The [Dynamsoft Camera Enhancer]({{ site.dce_android_api }}){:target="_blank"} module controls the camera, transforming it into an image source for the DCV (Dynamsoft Capture Vision) architecture through ISA implementation. It also enhances image quality during acquisition and provides basic viewers for user interaction. | Mandatory |
80+
| `DynamsoftUtility.aar` | The Dynamsoft Utility module defines auxiliary classes, including the ImageManager, and implementations of the CRF (Captured Result Filter) and ISA (Image Source Adapter) . These are shared by all Dynamsoft SDKs based on the DCV (Dynamsoft Capture Vision) architecture. | Optional |
8181

8282
2. Copy the above six (seven if the Utility is included) **aar** files to the target directory `HelloWorld\app\libs`
8383

0 commit comments

Comments
 (0)