From 4d3c7c585df920de676b4571252fe718f117201c Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Tue, 15 Jul 2025 14:22:25 +0800 Subject: [PATCH] update to internal commit 1da3a020 --- _config.yml | 8 ++++ .../sidelist-parameters-organization.html | 2 + .../auxiliary/barcode-format-specification.md | 2 + .../file/target-roi-definition/index.md | 5 ++- .../include-implied-ai01.md | 38 +++++++++++++++++++ .../include-trailing-check-digit.md | 38 +++++++++++++++++++ .../require-start-stop-chars.md | 8 ++-- .../image-source-options/file-filter.md | 6 +-- 8 files changed, 97 insertions(+), 10 deletions(-) create mode 100644 parameters/reference/barcode-format-specification/include-implied-ai01.md create mode 100644 parameters/reference/barcode-format-specification/include-trailing-check-digit.md diff --git a/_config.yml b/_config.yml index 6932352..cc611db 100644 --- a/_config.yml +++ b/_config.yml @@ -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 diff --git a/_includes/sidelist-parameters-organization.html b/_includes/sidelist-parameters-organization.html index d92627b..e456ccb 100644 --- a/_includes/sidelist-parameters-organization.html +++ b/_includes/sidelist-parameters-organization.html @@ -440,6 +440,8 @@
  • EnableQRCodeModel1
  • FindUnevenModuleBarcode
  • HeadModuleRatio
  • +
  • IncludeImpliedAI01
  • +
  • IncludeTrailingCheckDigit
  • MinQuietZoneWidth
  • MinRatioOfBarcodeZoneWidthToHeight
  • MinResultConfidence
  • diff --git a/parameters/file/auxiliary/barcode-format-specification.md b/parameters/file/auxiliary/barcode-format-specification.md index 064ad10..5c4e647 100644 --- a/parameters/file/auxiliary/barcode-format-specification.md +++ b/parameters/file/auxiliary/barcode-format-specification.md @@ -71,6 +71,8 @@ noTitleIndex: true } ], "FindUnevenModuleBarcode" : 1, + "IncludeTrailingCheckDigit": 1, + "IncludeImpliedAI01": 0, "HeadModuleRatio" : "211412", "MinQuietZoneWidth" : 1, "MinRatioOfBarcodeZoneWidthToHeight" : 100, diff --git a/parameters/file/target-roi-definition/index.md b/parameters/file/target-roi-definition/index.md index 38fac3a..f92935d 100644 --- a/parameters/file/target-roi-definition/index.md +++ b/parameters/file/target-roi-definition/index.md @@ -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: diff --git a/parameters/reference/barcode-format-specification/include-implied-ai01.md b/parameters/reference/barcode-format-specification/include-implied-ai01.md new file mode 100644 index 0000000..6d2d47f --- /dev/null +++ b/parameters/reference/barcode-format-specification/include-implied-ai01.md @@ -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**
    *int* | +| **Range**
    [0, 1] | +| **Default Value**
    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. diff --git a/parameters/reference/barcode-format-specification/include-trailing-check-digit.md b/parameters/reference/barcode-format-specification/include-trailing-check-digit.md new file mode 100644 index 0000000..5115c32 --- /dev/null +++ b/parameters/reference/barcode-format-specification/include-trailing-check-digit.md @@ -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**
    *int* | +| **Range**
    [0, 1] | +| **Default Value**
    1 | + +**Remarks** + +- 0: exclude. +- 1: include. +- This parameter is valid only for Code 128. + +**Availability** + +Introduced in version 11.0.4000. \ No newline at end of file diff --git a/parameters/reference/barcode-format-specification/require-start-stop-chars.md b/parameters/reference/barcode-format-specification/require-start-stop-chars.md index 26fb980..9c28c75 100644 --- a/parameters/reference/barcode-format-specification/require-start-stop-chars.md +++ b/parameters/reference/barcode-format-specification/require-start-stop-chars.md @@ -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 @@ -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 @@ -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. diff --git a/parameters/reference/image-source-options/file-filter.md b/parameters/reference/image-source-options/file-filter.md index a8e0008..ac174e2 100644 --- a/parameters/reference/image-source-options/file-filter.md +++ b/parameters/reference/image-source-options/file-filter.md @@ -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 @@ -23,7 +19,7 @@ Parameter `FileFilter` specifies a file name filter string, which determines whi ## Parameter Summary -| ScaleDownThreshold Parameter Summary | +| FileFilter Parameter Summary | | :----------------------------------- | | **Description**
    A file name filter string | | **Type**
    *String* |