Skip to content

Commit 68ed63c

Browse files
Merge pull request #28 from dynamsoft-docs/preview
update to internal commit 038f10de
2 parents 66dd64f + 5c96ece commit 68ed63c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1453
-211
lines changed

_config.yml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,26 @@ docFullPath: https://www.dynamsoft.com/document-normalizer/docs/server/
44
firstLevelUrl: /document-normalizer/docs/server
55
docHomePage: /document-normalizer/docs/core/introduction/
66

7-
c: /document-normalizer/docs/server/programming/c/
8-
c_api: /document-normalizer/docs/server/programming/c/api-reference/
9-
c_release_notes: /document-normalizer/docs/server/programming/c/release-notes/
10-
enumerations_v1: /document-normalizer/docs/server/programming/enumerations/
11-
cpp: /document-normalizer/docs/server/programming/cplusplus/
12-
cpp_api: /document-normalizer/docs/server/programming/cplusplus/api-reference/
13-
cpp_release_notes: /document-normalizer/docs/server/programming/cplusplus/release-notes/
7+
ddn_c: /document-normalizer/docs/server/programming/c/
8+
ddn_c_api: /document-normalizer/docs/server/programming/c/api-reference/
9+
ddn_c_release_notes: /document-normalizer/docs/server/programming/c/release-notes/
10+
ddn_enumerations_v1: /document-normalizer/docs/server/programming/enumerations/
11+
ddn_cpp: /document-normalizer/docs/server/programming/cplusplus/
12+
ddn_cpp_api: /document-normalizer/docs/server/programming/cplusplus/api-reference/
13+
ddn_cpp_release_notes: /document-normalizer/docs/server/programming/cplusplus/release-notes/
14+
ddn_dotnet: /document-normalizer/docs/server/programming/dotnet/
1415

15-
js: /document-normalizer/docs/web/programming/javascript/
16-
ios: /document-normalizer/docs/mobile/programming/ios/
17-
android: /document-normalizer/docs/mobile/programming/android/
18-
xamarin: /document-normalizer/docs/mobile/programming/xamarin/
16+
ddn_js: /document-normalizer/docs/web/programming/javascript/
17+
ddn_ios: /document-normalizer/docs/mobile/programming/ios/
18+
ddn_android: /document-normalizer/docs/mobile/programming/android/
19+
ddn_xamarin: /document-normalizer/docs/mobile/programming/xamarin/
1920

20-
dcv_enumerations: /capture-vision/docs/core/enums/
21-
parameters_reference_ddn: /document-normalizer/docs/core/parameters/reference/
21+
ddn_parameters_reference: /document-normalizer/docs/core/parameters/reference/
2222

2323
dcv_cpp_api: /capture-vision/docs/server/programming/cplusplus/api-reference/
24+
dcv_dotnet_api: /capture-vision/docs/server/programming/dotnet/api-reference/
2425
dcv_introduction: /capture-vision/docs/core/introduction/
26+
dcv_enumerations: /capture-vision/docs/core/enums/
2527

2628
useVersionTree: true
2729

_data/full_tree.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ tree_file_list:
55
- sidelist-programming/programming-cpp-v2.0.0.html
66
- sidelist-programming/programming-cpp-v2.0.20.html
77
- sidelist-programming/programming-cpp-v2.2.0.html
8-
- sidelist-programming/programming-c.html
8+
- sidelist-programming/programming-c.html
9+
- sidelist-programming/programming-dotnet.html
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
This is the first release of the .NET Edition of `DynamsoftDocumentNormalizer` SDK integrated with `DynamsoftCaptureVision (DCV)` architecture, which is newly established to aggregate the features of functional products powered by Dynamsoft. The features are designed to be pluggable, customizable and interactable. In addition, the functional products share the computation so that their processing speed is much higher than working individually.
3+
4+
* `DynamsoftCaptureVision` architecture consists of:
5+
* `ImageSourceAdapter(ISA)`, the standard input interface for you to convert image data from different sources into the standard input image data. In addition, `ISA` incorporates an image buffer management system that allows instant access to the buffered image data.
6+
* `CaptureVisionRouter (CVR)`, an engine for you to update templates, retrieve images from `ISA`, coordinate corresponding functional products and dispatch the results to the receivers.
7+
* Functional products that perform image processing, content understanding and semantic processing. The functional products are pluggable and passively called by CVR when they are required.
8+
* Result receiver interfaces. You can implement `CapturedResultReceiver (CRR)` to receive the `CapturedResults` that output when the processing on an image is finalized.
9+
* The parameter template system has been comprehensively upgraded.
10+
* Multiple algorithm task settings are available. You can define barcode decoding, label recognizing, document scanning and semantic processing tasks in one template file.
11+
* Extended the feature of the ROI system. By configuring the `target ROI` parameters, you can not only specify an `ROI` on the original image but also define the dependencies of the algorithm tasks. This feature enables you to customize the workflow when processing complex scenarios.
12+
* The image processing parameters are separated from the task parameters so that the template settings become more clear and concise.
13+
* The `intermediate result` system has been improved.
14+
* Achieved the `intermediate result` sharing between different functional products. The results that have the same image source and processing parameters are directly reused, which speeds up the image processing workflow. You don’t need to add any additional code to enable the `intermediate result` sharing. The library can recognize all the reusable results automatically based on the template file you uploaded.
15+

_includes/sidelist-full-tree.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
</li>
1212
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath targetRelativePath="sidelist-programming/programming-dotnet.html" -%}
1313
<li lang="cplusplus">
14-
<a href="{{ site.cpp }}" class="otherLinkColour">Introduction</a>
14+
<a href="{{ site.ddn_cpp }}" class="otherLinkColour">Introduction</a>
1515
</li>
1616
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath targetRelativePath="sidelist-programming/programming-cpp.html" -%}
1717
<li lang="c">
18-
<a href="{{ site.c }}" class="otherLinkColour">Introduction</a>
18+
<a href="{{ site.ddn_c }}" class="otherLinkColour">Introduction</a>
1919
</li>
2020
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath targetRelativePath="sidelist-programming/programming-c.html" -%}
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
<li lang="c" class="category">DEVELOPMENT</li>
2-
<li lang="c"><a href="{{ site.c }}user-guide/getting-started.html" class="otherLinkColour">User Guide</a></li>
3-
<li lang="c"><a href="{{ site.c_api }}" class="otherLinkColour">API Reference</a>
2+
<li lang="c"><a href="{{ site.ddn_c }}user-guide/getting-started.html" class="otherLinkColour">User Guide</a></li>
3+
<li lang="c"><a href="{{ site.ddn_c_api }}" class="otherLinkColour">API Reference</a>
44
<ul>
55
<li><a>Global Functions</a>
66
<ul>
7-
<li><a href="{{ site.c_api }}document-normalizer-init.html" class="otherLinkColour">Initialize and Destroy Functions</a></li>
8-
<li><a href="{{ site.c_api }}document-normalizer-general.html" class="otherLinkColour">General Methods</a></li>
9-
<li><a href="{{ site.c_api }}document-normalizer-settings.html" class="otherLinkColour">Setting Methods</a></li>
10-
<li><a href="{{ site.c_api }}document-normalizer-normalizing.html" class="otherLinkColour">Detecting and Normalizing Methods</a></li>
11-
<li><a href="{{ site.c_api }}document-normalizer-result.html" class="otherLinkColour">Result Methods</a></li>
7+
<li><a href="{{ site.ddn_c_api }}document-normalizer-init.html" class="otherLinkColour">Initialize and Destroy Functions</a></li>
8+
<li><a href="{{ site.ddn_c_api }}document-normalizer-general.html" class="otherLinkColour">General Methods</a></li>
9+
<li><a href="{{ site.ddn_c_api }}document-normalizer-settings.html" class="otherLinkColour">Setting Methods</a></li>
10+
<li><a href="{{ site.ddn_c_api }}document-normalizer-normalizing.html" class="otherLinkColour">Detecting and Normalizing Methods</a></li>
11+
<li><a href="{{ site.ddn_c_api }}document-normalizer-result.html" class="otherLinkColour">Result Methods</a></li>
1212
</ul>
1313
</li>
1414
<li><a>Structs</a>
1515
<ul>
16-
<li><a href="{{ site.c_api }}detected-quad-result.html" class="otherLinkColour">DetectedQuadResult</a></li>
17-
<li><a href="{{ site.c_api }}detected-quad-result-array.html" class="otherLinkColour">DetectedQuadResultArray</a></li>
18-
<li><a href="{{ site.c_api }}point.html" class="otherLinkColour">DM_Point</a></li>
19-
<li><a href="{{ site.c_api }}image-data.html" class="otherLinkColour">ImageData</a></li>
20-
<li><a href="{{ site.c_api }}normalized-image-result.html" class="otherLinkColour">NormalizedImageResult</a></li>
21-
<li><a href="{{ site.c_api }}quadrilateral.html" class="otherLinkColour">Quadrilateral</a></li>
16+
<li><a href="{{ site.ddn_c_api }}detected-quad-result.html" class="otherLinkColour">DetectedQuadResult</a></li>
17+
<li><a href="{{ site.ddn_c_api }}detected-quad-result-array.html" class="otherLinkColour">DetectedQuadResultArray</a></li>
18+
<li><a href="{{ site.ddn_c_api }}point.html" class="otherLinkColour">DM_Point</a></li>
19+
<li><a href="{{ site.ddn_c_api }}image-data.html" class="otherLinkColour">ImageData</a></li>
20+
<li><a href="{{ site.ddn_c_api }}normalized-image-result.html" class="otherLinkColour">NormalizedImageResult</a></li>
21+
<li><a href="{{ site.ddn_c_api }}quadrilateral.html" class="otherLinkColour">Quadrilateral</a></li>
2222
</ul>
2323
</li>
2424
<li><a>Enumerations</a>
2525
<ul>
26-
<li><a href="{{ site.enumerations_v1 }}image-pixel-format.html?src=c" class="otherLinkColour">ImagePixelFormat</a></li>
26+
<li><a href="{{ site.ddn_enumerations_v1 }}image-pixel-format.html?src=c" class="otherLinkColour">ImagePixelFormat</a></li>
2727
</ul>
2828
</li>
29-
<li><a href="{{ site.enumerations_v1 }}error-code.html?src=c" class="otherLinkColour">Error Codes</a></li>
29+
<li><a href="{{ site.ddn_enumerations_v1 }}error-code.html?src=c" class="otherLinkColour">Error Codes</a></li>
3030
</ul>
3131
</li>
32-
<li lang="c"><a href="{{ site.c_release_notes }}" class="otherLinkColour">Release Notes</a>
32+
<li lang="c"><a href="{{ site.ddn_c_release_notes }}" class="otherLinkColour">Release Notes</a>
3333
<ul>
34-
<li><a href="{{ site.c_release_notes }}c-1.html" class="otherLinkColour">Version 1.x</a></li>
34+
<li><a href="{{ site.ddn_c_release_notes }}c-1.html" class="otherLinkColour">Version 1.x</a></li>
3535
</ul>
3636
</li>
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
<li lang="cplusplus" class="category">DEVELOPMENT</li>
2-
<li lang="cplusplus"><a href="{{ site.cpp }}user-guide/getting-started.html" class="otherLinkColour">User Guide</a></li>
3-
<li lang="cplusplus"><a href="{{ site.cpp_api }}" class="otherLinkColour">API Reference</a>
2+
<li lang="cplusplus"><a href="{{ site.ddn_cpp }}user-guide/getting-started.html" class="otherLinkColour">User Guide</a></li>
3+
<li lang="cplusplus"><a href="{{ site.ddn_cpp_api }}" class="otherLinkColour">API Reference</a>
44
<ul>
5-
<li><a href="{{ site.cpp_api }}document-normalizer-index.html" class="otherLinkColour">Class CDocumentNormalizer</a>
5+
<li><a href="{{ site.ddn_cpp_api }}document-normalizer-index.html" class="otherLinkColour">Class CDocumentNormalizer</a>
66
<ul>
7-
<li><a href="{{ site.cpp_api }}document-normalizer-init.html" class="otherLinkColour">Constructor and Destructor</a></li>
8-
<li><a href="{{ site.cpp_api }}document-normalizer-general.html" class="otherLinkColour">General Methods</a></li>
9-
<li><a href="{{ site.cpp_api }}document-normalizer-settings.html" class="otherLinkColour">Setting Methods</a></li>
10-
<li><a href="{{ site.cpp_api }}document-normalizer-normalizing.html" class="otherLinkColour">Detecting and Normalizing Methods</a></li>
11-
<li><a href="{{ site.cpp_api }}document-normalizer-result.html" class="otherLinkColour">Result Methods</a></li>
7+
<li><a href="{{ site.ddn_cpp_api }}document-normalizer-init.html" class="otherLinkColour">Constructor and Destructor</a></li>
8+
<li><a href="{{ site.ddn_cpp_api }}document-normalizer-general.html" class="otherLinkColour">General Methods</a></li>
9+
<li><a href="{{ site.ddn_cpp_api }}document-normalizer-settings.html" class="otherLinkColour">Setting Methods</a></li>
10+
<li><a href="{{ site.ddn_cpp_api }}document-normalizer-normalizing.html" class="otherLinkColour">Detecting and Normalizing Methods</a></li>
11+
<li><a href="{{ site.ddn_cpp_api }}document-normalizer-result.html" class="otherLinkColour">Result Methods</a></li>
1212
</ul>
1313
</li>
1414
<li><a>Auxiliary Classes</a>
1515
<ul>
16-
<li><a href="{{ site.cpp_api }}detected-quad-result.html" class="otherLinkColour">CDetectedQuadResult</a></li>
17-
<li><a href="{{ site.cpp_api }}detected-quad-result-array.html" class="otherLinkColour">CDetectedQuadResultArray</a></li>
18-
<li><a href="{{ site.cpp_api }}image-data.html" class="otherLinkColour">CImageData</a></li>
19-
<li><a href="{{ site.cpp_api }}license-manager.html" class="otherLinkColour">CLicenseManager</a></li>
20-
<li><a href="{{ site.cpp_api }}normalized-image-result.html" class="otherLinkColour">CNormalizedImageResult</a></li>
21-
<li><a href="{{ site.cpp_api }}point.html" class="otherLinkColour">CPoint</a></li>
22-
<li><a href="{{ site.cpp_api }}quadrilateral.html" class="otherLinkColour">CQuadrilateral</a></li>
16+
<li><a href="{{ site.ddn_cpp_api }}detected-quad-result.html" class="otherLinkColour">CDetectedQuadResult</a></li>
17+
<li><a href="{{ site.ddn_cpp_api }}detected-quad-result-array.html" class="otherLinkColour">CDetectedQuadResultArray</a></li>
18+
<li><a href="{{ site.ddn_cpp_api }}image-data.html" class="otherLinkColour">CImageData</a></li>
19+
<li><a href="{{ site.ddn_cpp_api }}license-manager.html" class="otherLinkColour">CLicenseManager</a></li>
20+
<li><a href="{{ site.ddn_cpp_api }}normalized-image-result.html" class="otherLinkColour">CNormalizedImageResult</a></li>
21+
<li><a href="{{ site.ddn_cpp_api }}point.html" class="otherLinkColour">CPoint</a></li>
22+
<li><a href="{{ site.ddn_cpp_api }}quadrilateral.html" class="otherLinkColour">CQuadrilateral</a></li>
2323
</ul>
2424
</li>
2525
<li><a>Enumerations</a>
2626
<ul>
27-
<li><a href="{{ site.enumerations_v1 }}image-pixel-format.html?src=cpp" class="otherLinkColour">ImagePixelFormat</a></li>
27+
<li><a href="{{ site.ddn_enumerations_v1 }}image-pixel-format.html?src=cpp" class="otherLinkColour">ImagePixelFormat</a></li>
2828
</ul>
2929
</li>
30-
<li><a href="{{ site.enumerations_v1 }}error-code.html?src=cpp" class="otherLinkColour">Error Codes</a></li>
30+
<li><a href="{{ site.ddn_enumerations_v1 }}error-code.html?src=cpp" class="otherLinkColour">Error Codes</a></li>
3131
</ul>
3232
</li>
33-
<li lang="cplusplus"><a href="{{ site.cpp_release_notes }}" class="otherLinkColour">Release Notes</a>
33+
<li lang="cplusplus"><a href="{{ site.ddn_cpp_release_notes }}" class="otherLinkColour">Release Notes</a>
3434
<ul>
35-
<li><a href="{{ site.cpp_release_notes }}cpp-1.html" class="otherLinkColour">Version 1.x</a></li>
35+
<li><a href="{{ site.ddn_cpp_release_notes }}cpp-1.html" class="otherLinkColour">Version 1.x</a></li>
3636
</ul>
3737
</li>

0 commit comments

Comments
 (0)