Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion _data/full_tree.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
tree_file_list:
- sidelist-full-tree.html
- sidelist-architecture.html
- sidelist-parameter-reference.html
- sidelist-parameters-organization.html
- sidelist-understanding.html
1 change: 1 addition & 0 deletions _includes/sidelist-full-tree.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<li><a target="_blank" href="{{ site.dcvb_python }}" class="otherLinkColour refreshLink">Python</a></li>
<li><a target="_blank" href="{{ site.dcvb_cpp }}" class="otherLinkColour refreshLink">C++</a></li>
<li><a target="_blank" href="{{ site.dcvb_dotnet }}" class="otherLinkColour refreshLink">.NET</a></li>
<li><a target="_blank" href="{{ site.dcvb_java }}" class="otherLinkColour refreshLink">Java</a></li>
</ul>
</li>
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath targetRelativePath="sidelist-understanding.html" -%}
Expand Down
303 changes: 0 additions & 303 deletions _includes/sidelist-parameter-reference.html

This file was deleted.

6 changes: 5 additions & 1 deletion _includes/sidelist-parameters-organization.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@
<li><a href="{{ site.dcvb_parameters_reference }}label-recognizer-task-settings/stage-localize-text-lines.html" class="otherLinkColour">LocalizeTextLinesStage Object</a>
<ul>
<li><a href="{{ site.dcvb_parameters_reference }}label-recognizer-task-settings/stage-localize-text-lines.html#stage" class="otherLinkColour">Stage</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}label-recognizer-task-settings/localization-modes.html" class="otherLinkColour">LocalizationModes</a></li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -438,7 +439,9 @@
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/enable-addon-code.html" class="otherLinkColour">EnableAddOnCode</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/enable-data-matrix-ecc000-140.html" class="otherLinkColour">EnableDataMatrixECC000-140</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/enable-qr-code-model-1.html" class="otherLinkColour">EnableQRCodeModel1</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/expected-barcodes-count.html" class="otherLinkColour">ExpectedBarcodesCount</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/find-uneven-module-barcode.html" class="otherLinkColour">FindUnevenModuleBarcode</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/has-vertical-quietzone.html" class="otherLinkColour">HasVerticalQuietZone</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/head-module-ratio.html" class="otherLinkColour">HeadModuleRatio</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/include-implied-ai01.html" class="otherLinkColour">IncludeImpliedAI01</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/include-trailing-check-digit.html" class="otherLinkColour">IncludeTrailingCheckDigit</a></li>
Expand Down Expand Up @@ -497,7 +500,8 @@
</li>
<li><a href="{{ site.dcvb_parameters }}file/auxiliary/global-parameter.html" class="otherLinkColour">Global Parameter</a>
<ul>
<li><a href="{{ site.dcvb_parameters_reference }}global-parameter/max-total-image-dimension.html" class="otherLinkColour">MaxTotalImageDimension</a></li>
<li><a href="{{ site.dcvb_parameters }}file/auxiliary/global-parameter.html#maxtotalimagedimension" class="otherLinkColour">MaxTotalImageDimension</a></li>
<li><a href="{{ site.dcvb_parameters }}file/auxiliary/global-parameter.html#intraopnumthreads" class="otherLinkColour">IntraOpNumThreads</a></li>
</ul>
</li>
<li><a href="{{ site.dcvb_parameters }}file/semantic-processing/index.html" class="otherLinkColour">SemanticProcessing Object</a>
Expand Down
Binary file modified parameters/file/assets/capture-vision-model.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 34 additions & 5 deletions parameters/file/auxiliary/global-parameter.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,43 @@ noTitleIndex: true

# GlobalParameter Object

Currently, the `MaxTotalImageDimension` is the only parameter under `GlobalParameter`.
A `GlobalParameter` object defines the global parameters for Dynamsoft Capture Vision. The available global parameters are listed below.

## MaxTotalImageDimension

Parameter [`MaxTotalImageDimension`](../../reference/global-parameter/max-total-image-dimension.md) defines the maximum total dimension of the images that read in the memory.
## Example

```json
{
"MaxTotalImageDimension":0
"GlobalParameter":{
"MaxTotalImageDimension": 0,
"IntraOpNumThreads": 0
}
}
```

## Available Parameters

### MaxTotalImageDimension

Defines the maximum value of total dimension (in million pixel) of source images the library can process concurrently.

| Parameter Summary |
| :---------------- |
| **Type**<br>*int* |
| **Range**<br>[0, 0x7fffffff] |
| **Default Value**<br>0 |
| **Remarks**<br>0 means no limitation. |

### IntraOpNumThreads

Sets the global number of threads used internally for model execution.

| Parameter Summary |
| :---------------- |
| **Type**<br>*int* |
| **Range**<br>[0, 256] |
| **Default Value**<br>4 |
| **Remarks**<br>0 means the library automatically decides the number of threads to use based on the system's CPU core count. |

**Remarks**

- Introduced in Dynamsoft Barcode Reader SDK version 11.2.1000 and Dynamsoft Capture Vision version 3.2.1000.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: default-layout
title: ExpectedBarcodesCount - Dynamsoft Barcode Reader Parameters
description: The parameter ExpectedBarcodesCount of BarcodeFormatSpecification defines the expected number of barcodes for a specific format.
keywords: Expected barcodes count
---

# ExpectedBarcodesCount

Parameter `ExpectedBarcodesCount` of `BarcodeFormatSpecification` defines the expected number of barcodes for a specific format.

**Remarks**

- Introduced in version 11.2.1000.

## Example

```json
{
"ExpectedBarcodesCount": 0
}
```

## Parameter Summary

| ExpectedBarcodesCount Parameter Summary |
| :--------------------------------- |
| **Type**<br>*int* |
| **Range**<br>[1, 0x7fffffff] |
| **Default Value**<br>0x7fffffff |

Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: default-layout
title: HasVerticalQuietZone - Dynamsoft Barcode Reader Parameters
description: The parameter Code128Subset of Dynamsoft Barcode Reader defines whether there is a sufficient vertical quiet zone above and below the barcode.
keywords: HasVerticalQuietZone , parameter reference, parameter
---

# HasVerticalQuietZone

Parameter `HasVerticalQuietZone` defines whether there is a sufficient vertical quiet zone above and below the barcode.

**Remarks**

- Introduced in version 11.2.1000.

## Example

```json
{
"HasVerticalQuietZone": 0
}
```

## Parameter Summary

The structure of the `HasVerticalQuietZone` is shown as follow:

| HasVerticalQuietZone Parameter Summary |
| :--------------------------------- |
| **Type**<br>*int* |
| **Range**<br>[0, 1] |
| **Default Value**<br> 1|

**Remarks**

- 0: Do not require a sufficient vertical quiet zone above and below the barcode.
- 1: Require a sufficient vertical quiet zone above and below the barcode.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ The structure of the `IncludeTrailingCheckDigit` is shown as follow:
| :--------------------------------- |
| **Type**<br>*int* |
| **Range**<br>[0, 1] |
| **Default Value**<br>1 |
| **Default Value**<br>0 |

**Remarks**

- 0: exclude.
- 1: include.
- This parameter is valid only for Code 128.

**Availability**

Introduced in version 11.0.4000.
- Introduced in version 11.0.4000.
- Changed the default value to 0 from 1 in version 11.2.1000
45 changes: 0 additions & 45 deletions parameters/reference/barcode-format-specification/index.md

This file was deleted.

Loading