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
2 changes: 2 additions & 0 deletions parameters/file/image-parameter.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": []},
Expand Down Expand Up @@ -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). |
Expand Down
Original file line number Diff line number Diff line change
@@ -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
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions parameters/reference/image-parameter/applicable-stages.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
47 changes: 47 additions & 0 deletions parameters/reference/image-parameter/stage-input-color-image.md
Original file line number Diff line number Diff line change
@@ -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**<br>*string* |
| **Required**<br>Yes |
| **Default Value**<br>`"SST_INPUT_COLOR_IMAGE"` |
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Parameter `TextDetectionMode` consist of a group of text detection mode objects.
<tr>
<td><b>Candidate Mode List</b><br>TTDM_WORD
<br>TTDM_LINE
<br>TTDM_LAYOUT
<br>TTDM_LAYOUT (Not supported yet)
<br>TTDM_SKIP
</td>
</tr>
Expand Down
Loading