Skip to content

Commit 683108c

Browse files
Merge pull request #31 from dynamsoft-docs/preview
update to internal commit 158c108f
2 parents cddc414 + 3203451 commit 683108c

30 files changed

+1407
-256
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ dcv_parameters_reference: /capture-vision/docs/core/parameters/reference/
3737
dcv_cpp_api: /capture-vision/docs/server/programming/cplusplus/api-reference/
3838
dcv_dotnet_api: /capture-vision/docs/server/programming/dotnet/api-reference/
3939
dcv_arch: /capture-vision/docs/core/architecture/
40+
dcv_introduction: /capture-vision/docs/core/introduction/
4041

4142
assets: /label-recognition/docs/server/assets/
4243
edit_icon: /label-recognition/docs/server/assets/img-icon/edit-icon.png

_data/full_tree.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ tree_file_list:
1111
- sidelist-programming/programming-cpp-v3.2.10.html
1212
- sidelist-programming/programming-cpp.html
1313
- sidelist-programming/programming-dotnet-v1.2.1.html
14+
- sidelist-programming/programming-dotnet-v2.0.0.html
1415
- sidelist-programming/programming-dotnet.html
1516
- sidelist-programming/programming-java-v1.2.1.html
1617
- sidelist-programming/programming-java.html

_data/product_version.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
useGroupedVersion: true
22

33
version_info_list:
4-
- value: latest version(3.2.20)
4+
- value: latest version(3.2.30)
55
- value: 3.x
66
child:
7+
- 3.2.20_cplusplus
78
- 3.2.10_cplusplus
89
- 3.2.0_cplusplus
910
- 3.0.30_cplusplus
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
`DynamsoftLabelRecognizer` SDK has been revamped to integrate 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-programming/programming-cpp-v3.2.0.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159
<li><a>Enums</a>
160160
<ul>
161161
<li><a href="{{ site.dcv_enumerations }}capture-vision-router/capture-state.html?lang=cpp" class="otherLinkColour">CaptureState</a></li>
162+
<li><a href="{{ site.dcv_enumerations }}capture-vision-router/image-source-state.html?lang=cpp" class="otherLinkColour">ImageSourceState</a></li>
162163
</ul>
163164
</li>
164165

@@ -266,7 +267,6 @@
266267
<li><a href="{{ site.dcv_enumerations }}core/grayscale-transformation-mode.html?lang=cpp" class="otherLinkColour">GrayscaleTransformationMode</a></li>
267268
<li><a href="{{ site.dcv_enumerations }}core/image-capture-distance-mode.html?lang=cpp" class="otherLinkColour">ImageCaptureDistanceMode</a></li>
268269
<li><a href="{{ site.dcv_enumerations }}core/image-pixel-format.html?lang=cpp" class="otherLinkColour">ImagePixelFormat</a></li>
269-
<li><a href="{{ site.dcv_enumerations }}core/image-source-state.html?lang=cpp" class="otherLinkColour">ImageSourceState</a></li>
270270
<li><a href="{{ site.dcv_enumerations }}core/image-tag-type.html?lang=cpp" class="otherLinkColour">ImageTagType</a></li>
271271
<li><a href="{{ site.dcv_enumerations }}core/intermediate-result-unit-type.html?lang=cpp" class="otherLinkColour">IntermediateResultUnitType</a></li>
272272
<li><a href="{{ site.dcv_enumerations }}core/pdf-reading-mode.html?lang=cpp" class="otherLinkColour">PDFReadingMode</a></li>

_includes/sidelist-programming/programming-cpp-v3.2.10.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@
160160
<li><a>Enums</a>
161161
<ul>
162162
<li><a href="{{ site.dcv_enumerations }}capture-vision-router/capture-state.html?lang=cpp" class="otherLinkColour">CaptureState</a></li>
163+
<li><a href="{{ site.dcv_enumerations }}capture-vision-router/image-source-state.html?lang=cpp" class="otherLinkColour">ImageSourceState</a></li>
163164
</ul>
164165
</li>
165166

@@ -266,7 +267,6 @@
266267
<li><a href="{{ site.dcv_enumerations }}core/grayscale-transformation-mode.html?lang=cpp" class="otherLinkColour">GrayscaleTransformationMode</a></li>
267268
<li><a href="{{ site.dcv_enumerations }}core/image-capture-distance-mode.html?lang=cpp" class="otherLinkColour">ImageCaptureDistanceMode</a></li>
268269
<li><a href="{{ site.dcv_enumerations }}core/image-pixel-format.html?lang=cpp" class="otherLinkColour">ImagePixelFormat</a></li>
269-
<li><a href="{{ site.dcv_enumerations }}core/image-source-state.html?lang=cpp" class="otherLinkColour">ImageSourceState</a></li>
270270
<li><a href="{{ site.dcv_enumerations }}core/image-tag-type.html?lang=cpp" class="otherLinkColour">ImageTagType</a></li>
271271
<li><a href="{{ site.dcv_enumerations }}core/intermediate-result-unit-type.html?lang=cpp" class="otherLinkColour">IntermediateResultUnitType</a></li>
272272
<li><a href="{{ site.dcv_enumerations }}core/pdf-reading-mode.html?lang=cpp" class="otherLinkColour">PDFReadingMode</a></li>

_includes/sidelist-programming/programming-cpp.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@
162162
<li><a>Enums</a>
163163
<ul>
164164
<li><a href="{{ site.dcv_enumerations }}capture-vision-router/capture-state.html?lang=cpp" class="otherLinkColour">CaptureState</a></li>
165+
<li><a href="{{ site.dcv_enumerations }}capture-vision-router/image-source-state.html?lang=cpp" class="otherLinkColour">ImageSourceState</a></li>
165166
</ul>
166167
</li>
167168

@@ -271,7 +272,6 @@
271272
<li><a href="{{ site.dcv_enumerations }}core/grayscale-transformation-mode.html?lang=cpp" class="otherLinkColour">GrayscaleTransformationMode</a></li>
272273
<li><a href="{{ site.dcv_enumerations }}core/image-capture-distance-mode.html?lang=cpp" class="otherLinkColour">ImageCaptureDistanceMode</a></li>
273274
<li><a href="{{ site.dcv_enumerations }}core/image-pixel-format.html?lang=cpp" class="otherLinkColour">ImagePixelFormat</a></li>
274-
<li><a href="{{ site.dcv_enumerations }}core/image-source-state.html?lang=cpp" class="otherLinkColour">ImageSourceState</a></li>
275275
<li><a href="{{ site.dcv_enumerations }}core/image-tag-type.html?lang=cpp" class="otherLinkColour">ImageTagType</a></li>
276276
<li><a href="{{ site.dcv_enumerations }}core/intermediate-result-unit-type.html?lang=cpp" class="otherLinkColour">IntermediateResultUnitType</a></li>
277277
<li><a href="{{ site.dcv_enumerations }}core/pdf-reading-mode.html?lang=cpp" class="otherLinkColour">PDFReadingMode</a></li>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<li lang="dotnet" class="category">DEVELOPMENT</li>
2+
<li lang="dotnet" ><a href="{{ site.dlr_dotnet }}user-guide.html" class="otherLinkColour">User Guide</a></li>
3+
4+
<li lang="dotnet" ><a href="{{ site.dlr_dotnet_api }}" class="otherLinkColour">API Reference</a>
5+
<ul>
6+
<li><a href="{{ site.dlr_dotnet_api }}label-recognizer.html" class="otherLinkColour">LabelRecognizer</a></li>
7+
<li><a style="cursor:pointer;color:#3c3c3c">Auxiliary Classes</a>
8+
<ul>
9+
<li><a href="{{ site.dlr_dotnet_api }}quadrilateral.html" class="otherLinkColour">Quadrilateral</a></li>
10+
<li><a href="{{ site.dlr_dotnet_api }}image-data.html" class="otherLinkColour">ImageData</a></li>
11+
<li><a href="{{ site.dlr_dotnet_api }}barcode-result.html" class="otherLinkColour">BarcodeResult</a></li>
12+
<li><a href="{{ site.dlr_dotnet_api }}label-recognizer-exception.html" class="otherLinkColour">LabelRecognizerException</a></li>
13+
<li><a href="{{ site.dlr_dotnet_api }}dlr-runtime-settings.html" class="otherLinkColour">DLR_RuntimeSettings</a></li>
14+
<li><a href="{{ site.dlr_dotnet_api }}dlr-reference-region.html" class="otherLinkColour">DLR_ReferenceRegion</a></li>
15+
<li><a href="{{ site.dlr_dotnet_api }}dlr-result.html" class="otherLinkColour">DLR_Result</a></li>
16+
<li><a href="{{ site.dlr_dotnet_api }}dlr-line-result.html" class="otherLinkColour">DLR_LineResult</a></li>
17+
<li><a href="{{ site.dlr_dotnet_api }}dlr-character-result.html" class="otherLinkColour">DLR_CharacterResult</a></li>
18+
<li><a href="{{ site.dlr_dotnet_api }}dlr-dictionary-correction-threshold.html" class="otherLinkColour">DLR_DictionaryCorrectionThreshold</a></li>
19+
<li><a href="{{ site.dlr_dotnet_api }}dlr-further-modes.html" class="otherLinkColour">DLR_FurtherModes</a></li>
20+
</ul>
21+
</li>
22+
</ul>
23+
</li>
24+
<li lang="dotnet" class="category">USEFUL RESOURCES</li>
25+
26+
<li lang="dotnet" ><a href="{{ site.dlr_dotnet_release_notes }}" class="otherLinkColour">Release Notes</a>
27+
<ul>
28+
<li><a href="{{ site.dlr_dotnet_release_notes }}dotnet-2.html" class="otherLinkColour">Version 2.x</a></li>
29+
<li><a href="{{ site.dlr_dotnet_release_notes }}dotnet-1.html" class="otherLinkColour">Version 1.x</a></li>
30+
</ul>
31+
</li>

0 commit comments

Comments
 (0)