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
8 changes: 8 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,13 @@ plugins:
- jekyll-readme-index
- jekyll-seo-tag

defaults:
- scope:
path: ""
values:
noTitleIndex: true
needAutoGenerateSidebar: true
needGenerateH3Content: true

url: "https://www.dynamsoft.com" # sitemap root

2 changes: 2 additions & 0 deletions _includes/sidelist-parameters-organization.html
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,8 @@
<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/find-uneven-module-barcode.html" class="otherLinkColour">FindUnevenModuleBarcode</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>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/min-quiet-zone-width.html" class="otherLinkColour">MinQuietZoneWidth</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/min-ratio-of-barcode-zone-width-to-height.html" class="otherLinkColour">MinRatioOfBarcodeZoneWidthToHeight</a></li>
<li><a href="{{ site.dcvb_parameters_reference }}barcode-format-specification/min-result-confidence.html" class="otherLinkColour">MinResultConfidence</a></li>
Expand Down
2 changes: 2 additions & 0 deletions parameters/file/auxiliary/barcode-format-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ noTitleIndex: true
}
],
"FindUnevenModuleBarcode" : 1,
"IncludeTrailingCheckDigit": 1,
"IncludeImpliedAI01": 0,
"HeadModuleRatio" : "211412",
"MinQuietZoneWidth" : 1,
"MinRatioOfBarcodeZoneWidthToHeight" : 100,
Expand Down
5 changes: 3 additions & 2 deletions parameters/file/target-roi-definition/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,12 @@ The recognition tasks configured on the `TargetROIDef` object include barcode re
The atomic result of each task type is the smallest output item, which can be a barcode, text line, table cell, detected quadrilateral, etc. `CapturedResult` represents a set of all captured atomic result items on an image. The following table lists the task types and corresponding atomic result item types.

| Task Type | Performed By | Atomic Result Type |
| :------------------- | :----------- | :------------------- |
| :------------------- | :----------- | :--------------------- |
| Read Barcodes | Dynamsoft Barcode Reader SDK | BarcodeResultItem |
| Recognize Text Lines | Dynamsoft Label Recognizer SDK | TextResultItem |
| Detect Document Borders | Dynamsoft Document Normalizer SDK | DetectedQuadResultItem |
| Normalize a Document | Dynamsoft Document Normalizer SDK | NormalizedImageResultItem |
| Deskew a Document | Dynamsoft Document Normalizer SDK | DeskewedImageResultItem |
| Enhance an Image | Dynamsoft Document Normalizer SDK | EnhancedImageResultItem |

If you want to learn more about the design details of recognition task settings, please refer to the following links:

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: default-layout
title: IncludeImpliedAI01 - Dynamsoft Barcode Reader Parameters
description: The parameter IncludeImpliedAI01 of Dynamsoft Barcode Reader defines whether to prepend the implied "01" at the beginning of the result bytes/text.
keywords: IncludeImpliedAI01, parameter reference, parameter
---

# IncludeImpliedAI01

Parameter `IncludeImpliedAI01` defines whether to prepend the implied "01" at the beginning of the result bytes/text.

## Example

```json
{
"IncludeImpliedAI01": 1
}
```

## Parameter Summary

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

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

**Remarks**

- 0: exclude.
- 1: include.
- This parameter is valid only for GS1_DATABAR/GS1_COMPOSITE code formats.

**Availability**

Introduced in version 11.0.4000.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: default-layout
title: IncludeTrailingCheckDigit - Dynamsoft Barcode Reader Parameters
description: The parameter IncludeTrailingCheckDigit of Dynamsoft Barcode Reader defines whether to include the trailing check digit in the byte result.
keywords: IncludeTrailingCheckDigit, parameter reference, parameter
---

# IncludeTrailingCheckDigit

Parameter `IncludeTrailingCheckDigit` defines whether to include the trailing check digit in the byte result.

## Example

```json
{
"IncludeTrailingCheckDigit": 1
}
```

## Parameter Summary

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

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

**Remarks**

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

**Availability**

Introduced in version 11.0.4000.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default-layout
title: RequireStartStopChars - Dynamsoft Barcode Reader Parameters
description: The parameter RequireStartStopChars of Dynamsoft Barcode Reader defines whether the start and stop characters are required when searching for common 1D barcodes.
description: The parameter RequireStartStopChars of Dynamsoft Barcode Reader defines whether the start and/or stop characters are required when searching for common 1D barcodes.
keywords: RequireStartStopChars , parameter reference, parameter
needGenerateH3Content: true
needAutoGenerateSidebar: true
Expand All @@ -11,7 +11,7 @@ permalink: /parameters/reference/barcode-format-specification/require-start-stop

# RequireStartStopChars

Parameter `RequireStartStopChars` defines whether the start and stop characters are required when searching for common 1D barcodes.
Parameter `RequireStartStopChars` defines whether the start and/or stop characters are required when searching for common 1D barcodes.

## Example

Expand All @@ -33,5 +33,7 @@ The structure of the`RequireStartStopChars` is shown as follow:

**Remarks**

- 0: start and stop characters are not required.
- 0: start and/or stop characters are not required.
>[!NOTE]
> **Behavior changed in v11.0.4000**: In previous versions, this meant both start and stop characters were not required. Since v11.0.4000, it allows either or both to be missing.
- 1: start and stop characters are required.
6 changes: 1 addition & 5 deletions parameters/reference/image-source-options/file-filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ layout: default-layout
title: FileFilter - Dynamsoft Capture Vision Parameters
description: The parameter FileFilter of Dynamsoft Capture Vision defines .
keywords: File filter, ISA
needAutoGenerateSidebar: true
noTitleIndex: true
needGenerateH3Content: true
permalink: /parameters/reference/image-source-options/file-filter.html
---

# FileFilter
Expand All @@ -23,7 +19,7 @@ Parameter `FileFilter` specifies a file name filter string, which determines whi

## Parameter Summary

| ScaleDownThreshold Parameter Summary |
| FileFilter Parameter Summary |
| :----------------------------------- |
| **Description**<br>A file name filter string |
| **Type**<br>*String* |
Expand Down