From 0a61efc0aef603605ba5bb7d4ba65f01345173c8 Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 9 May 2026 11:00:41 +0800 Subject: [PATCH] update parameter contents --- parameters/file/image-parameter.md | 2 + .../data-matrix-module-isotropic.md | 2 +- .../expected-barcodes-count.md | 1 + .../image-parameter/applicable-stages.md | 1 + .../stage-input-color-image.md | 47 +++++++++++++++++++ .../image-parameter/text-detection-mode.md | 2 +- 6 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 parameters/reference/image-parameter/stage-input-color-image.md diff --git a/parameters/file/image-parameter.md b/parameters/file/image-parameter.md index 12ca891..6318052 100644 --- a/parameters/file/image-parameter.md +++ b/parameters/file/image-parameter.md @@ -18,6 +18,7 @@ The `ImageParameter` object is designed to configure and organize parameters for "Name": "ip_default", "BaseImageParameterName": "ip_base", "ApplicableStages": [ + {"Stage": "SST_INPUT_COLOR_IMAGE"}, {"Stage": "SST_SCALE_IMAGE", "ImageScaleSetting": {}}, {"Stage": "SST_CONVERT_TO_GRAYSCALE", "ColourConversionModes": []}, {"Stage": "SST_TRANSFORM_GRAYSCALE", "GrayscaleTransformationModes": []}, @@ -109,6 +110,7 @@ Reference `ImageParameter` objects in task settings by name: | Stage Name | Description | | ---------- | ----------- | +| [`SST_INPUT_COLOR_IMAGE`]({{site.dcvb_parameters_reference}}image-parameter/stage-input-color-image.html) | Represents the starting stage of each section, serving as a placeholder for the input color image. | | [`SST_SCALE_IMAGE`]({{site.dcvb_parameters_reference}}image-parameter/stage-scale-image.html) | Scales the image up or down. | | [`SST_CONVERT_TO_GRAYSCALE`]({{site.dcvb_parameters_reference}}image-parameter/stage-convert-to-grayscale.html) | Converts a color image to grayscale. | | [`SST_TRANSFORM_GRAYSCALE`]({{site.dcvb_parameters_reference}}image-parameter/stage-transform-grayscale.html) | Transforms the grayscale image (e.g., for inverted barcodes). | diff --git a/parameters/reference/barcode-format-specification/data-matrix-module-isotropic.md b/parameters/reference/barcode-format-specification/data-matrix-module-isotropic.md index 0fe6727..8b7b7c1 100644 --- a/parameters/reference/barcode-format-specification/data-matrix-module-isotropic.md +++ b/parameters/reference/barcode-format-specification/data-matrix-module-isotropic.md @@ -1,7 +1,7 @@ --- layout: default-layout title: DataMatrixModuleIsotropic - Dynamsoft Barcode Reader Parameters -description: The parameter DataMatrixModuleIsotropic specifies whether the Data Matrix modules are isotropic, meaning they have equal scaling in all directions. +description: The parameter DataMatrixModuleIsotropic was removed in Dynamsoft Barcode Reader v11.4.1000. Use BarcodeZoneWidthToHeightRatioRangeArray instead. keywords: DataMatrixModuleIsotropic, parameter reference, parameter --- diff --git a/parameters/reference/barcode-format-specification/expected-barcodes-count.md b/parameters/reference/barcode-format-specification/expected-barcodes-count.md index f17edc9..5f0cf0d 100644 --- a/parameters/reference/barcode-format-specification/expected-barcodes-count.md +++ b/parameters/reference/barcode-format-specification/expected-barcodes-count.md @@ -12,6 +12,7 @@ Parameter `ExpectedBarcodesCount` of `BarcodeFormatSpecification` defines the ex **Remarks** - Introduced in version 11.2.1000. +- Once the number of decoded barcodes for this format reaches `ExpectedBarcodesCount`, decoding for this format will stop. However, if the total result count has not yet reached the task-level [ExpectedBarcodesCount]({{site.dcvb_parameters_reference}}barcode-reader-task-settings/expected-barcodes-count.html), decoding will continue for other barcode formats. ## JSON Structure diff --git a/parameters/reference/image-parameter/applicable-stages.md b/parameters/reference/image-parameter/applicable-stages.md index d95186d..6b804ba 100644 --- a/parameters/reference/image-parameter/applicable-stages.md +++ b/parameters/reference/image-parameter/applicable-stages.md @@ -59,6 +59,7 @@ The `ImageParameter` includes the following stages: | [DetectTextZonesStage](stage-detect-text-zones.md) (`SST_DETECT_TEXT_ZONES`) | The stage that detects text zones on the image. | | [EnhanceGrayscaleStage](stage-enhance-grayscale.md) (`SST_ENHANCE_GRAYSCALE`) | The stage that improves the quality of the grayscale image. | | [FindContoursStage](stage-find-contours.md) (`SST_FIND_CONTOURS`) | The stage that finds contours in the image. | +| [InputColorImageStage](stage-input-color-image.md) (`SST_INPUT_COLOR_IMAGE`) | The stage that represents the starting stage of each section, serving as a placeholder for the input color image. | | [RemoveTextureFromGrayscaleStage](stage-remove-texture-from-grayscale.md) (`SST_REMOVE_TEXTURE_FROM_GRAYSCALE`) | The stage that removes texture from the grayscale image. | | [RemoveTextZonesFromBinaryStage](stage-remove-text-zones-from-binary.md) (`SST_REMOVE_TEXT_ZONES_FROM_BINARY`) | The stage that removes text zones from the binary image. | | [ScaleImageStage](stage-scale-image.md) (`SST_SCALE_IMAGE`) | The stage that down/up scales the image. | diff --git a/parameters/reference/image-parameter/stage-input-color-image.md b/parameters/reference/image-parameter/stage-input-color-image.md new file mode 100644 index 0000000..f36d088 --- /dev/null +++ b/parameters/reference/image-parameter/stage-input-color-image.md @@ -0,0 +1,47 @@ +--- +layout: default-layout +title: InputColorImageStage - Dynamsoft Capture Vision Parameters +description: The InputColorImageStage represents the starting stage of each section, serving as a placeholder for the input color image. +keywords: Input Color Image Stage +--- + +# InputColorImageStage + +`InputColorImageStage` represents the starting stage of each section in the image processing pipeline. It acts as a placeholder marking the entry point where the original color image is first received for processing within a section. In JSON, it is represented as a Stage object with `"Stage": "SST_INPUT_COLOR_IMAGE"`. + +## JSON Structure + +**Location in template:** +``` +ImageParameterOptions[i] + └── ApplicableStages[j] (Stage object where Stage = "SST_INPUT_COLOR_IMAGE") +``` + +**Parent object:** [ApplicableStages]({{ site.dcvb_parameters_reference }}image-parameter/applicable-stages.html) within [ImageParameter]({{ site.dcvb_parameters }}file/image-parameter.html) + +**Example:** + +```json +{ + "Stage": "SST_INPUT_COLOR_IMAGE" +} +``` + +> [!NOTE] +> - This snippet shows a Stage object configured for the input color image. +> - To use it, add this object to the `ApplicableStages` array within an [ImageParameter]({{ site.dcvb_parameters }}file/image-parameter.html). +> - For the complete JSON structure, see: +> - [Full JSON Structure]({{ site.dcvb_parameters }}file/index.html#full-json-structure) +> - [Minimal Valid JSON]({{ site.dcvb_parameters }}file/index.html#minimal-valid-json-example) + +## Parameters + +### Stage + +Specifies the stage type. Fixed value: `SST_INPUT_COLOR_IMAGE`. + +| Parameter Details | +| :------------- | +| **Type**
*string* | +| **Required**
Yes | +| **Default Value**
`"SST_INPUT_COLOR_IMAGE"` | diff --git a/parameters/reference/image-parameter/text-detection-mode.md b/parameters/reference/image-parameter/text-detection-mode.md index 84c03f4..fec7ad9 100644 --- a/parameters/reference/image-parameter/text-detection-mode.md +++ b/parameters/reference/image-parameter/text-detection-mode.md @@ -63,7 +63,7 @@ Parameter `TextDetectionMode` consist of a group of text detection mode objects. Candidate Mode List
TTDM_WORD
TTDM_LINE -
TTDM_LAYOUT +
TTDM_LAYOUT (Not supported yet)
TTDM_SKIP