diff --git a/_includes/sidelist-parameters-organization.html b/_includes/sidelist-parameters-organization.html
index 7b1b0d2..c3d8e05 100644
--- a/_includes/sidelist-parameters-organization.html
+++ b/_includes/sidelist-parameters-organization.html
@@ -182,6 +182,7 @@
@@ -425,6 +426,7 @@
- AllModuleDeviation
- AustralianPostEncodingTable
+ - AutoDetectColorInversion
- BarcodeAngleRangeArray
- BarcodeBytesLengthRangeArray
- BarcodeFormatIds
diff --git a/architecture/input.md b/architecture/input.md
index 0066870..35a7776 100644
--- a/architecture/input.md
+++ b/architecture/input.md
@@ -5,7 +5,6 @@ description: An explanation of the image input mechanism in the Dynamsoft Captur
needAutoGenerateSidebar: true
needGenerateH3Content: true
noTitleIndex: false
-permalink: /architecture/input.html
---
# Input
diff --git a/architecture/output.md b/architecture/output.md
index 1350079..d189442 100644
--- a/architecture/output.md
+++ b/architecture/output.md
@@ -5,7 +5,6 @@ description: An explanation of the output mechanism in the Dynamsoft Capture Vis
needAutoGenerateSidebar: true
needGenerateH3Content: true
noTitleIndex: false
-permalink: /architecture/output.html
---
# Output
diff --git a/architecture/semantic-processing.md b/architecture/semantic-processing.md
index 41972b1..495dc01 100644
--- a/architecture/semantic-processing.md
+++ b/architecture/semantic-processing.md
@@ -5,7 +5,6 @@ description: An explanation of Semantic Processing in the Dynamsoft Capture Visi
needAutoGenerateSidebar: true
needGenerateH3Content: true
noTitleIndex: true
-permalink: /architecture/semantic-processing.html
---
# Semantic Processing
diff --git a/parameters/file/auxiliary/barcode-format-specification.md b/parameters/file/auxiliary/barcode-format-specification.md
index eb8b8f2..5847c0a 100644
--- a/parameters/file/auxiliary/barcode-format-specification.md
+++ b/parameters/file/auxiliary/barcode-format-specification.md
@@ -16,6 +16,7 @@ noTitleIndex: true
"Name":"BFS_1",
"AllModuleDeviation" : 0,
"AustralianPostEncodingTable" : "C",
+ "AutoDetectColorInversion": 0,
"EnableAddOnCode": 0,
"BarcodeAngleRangeArray" : [
{
diff --git a/parameters/file/task-settings/label-recognizer-task-settings.md b/parameters/file/task-settings/label-recognizer-task-settings.md
index 89b738b..d1ff458 100644
--- a/parameters/file/task-settings/label-recognizer-task-settings.md
+++ b/parameters/file/task-settings/label-recognizer-task-settings.md
@@ -34,7 +34,25 @@ The `LabelRecognizerTaskSetting` object is used to configure settings for a labe
"ImageParameterName": "ip_default",
"StageArray": [
{
- "Stage": "SST_LOCALIZE_TEXT_LINES"
+ "Stage": "SST_LOCALIZE_TEXT_LINES",
+ "LocalizationModes": [
+ {
+ "Mode": "LM_NEURAL_NETWORK",
+ "ModelNameArray": ["MRZLocalization"]
+ },
+ {
+ "Mode": "LM_GENERAL"
+ }
+ ],
+ "OrientationDetectionModes": [
+ {
+ "Mode": "ODM_SPATIAL_REFERENCES"
+ },
+ {
+ "Mode": "ODM_CHARS_ORIENTATION_NEURAL_NETWORK",
+ "ModelNameArray": ["TextLineOrientationCls"]
+ }
+ ]
}
]
},
diff --git a/parameters/reference/barcode-format-specification/auto-detect-color-inversion.md b/parameters/reference/barcode-format-specification/auto-detect-color-inversion.md
new file mode 100644
index 0000000..36e7c3a
--- /dev/null
+++ b/parameters/reference/barcode-format-specification/auto-detect-color-inversion.md
@@ -0,0 +1,82 @@
+---
+layout: default-layout
+title: AutoDetectColorInversion - Dynamsoft Barcode Reader Parameters
+description: The parameter AutoDetectColorInversion of Dynamsoft Barcode Reader defines whether to automatically detect and decode barcodes with inverted foreground and background colors.
+keywords: AutoDetectColorInversion, inverted, parameter reference, parameter
+---
+
+# AutoDetectColorInversion
+
+Parameter `AutoDetectColorInversion` defines whether to automatically detect and decode barcodes that have inverted foreground and background colors (i.e., light modules on a dark background) without requiring global grayscale inversion via `GrayscaleTransformationModes`.
+
+**Remarks**
+
+- Introduced in version 11.6.1000.
+
+## JSON Structure
+
+**Location in template:**
+```
+BarcodeFormatSpecificationOptions[i]
+ └── AutoDetectColorInversion
+```
+
+**Parent object:** [BarcodeFormatSpecification]({{ site.dcvb_parameters }}file/auxiliary/barcode-format-specification.html) object
+
+**Example:**
+
+```json
+{
+ "BarcodeFormatIds": ["BF_DATAMATRIX"],
+ "AutoDetectColorInversion": 0
+}
+```
+
+> [!NOTE]
+> - This snippet shows only the `AutoDetectColorInversion` parameter.
+> - To use it, embed this parameter within a [BarcodeFormatSpecification]({{ site.dcvb_parameters }}file/auxiliary/barcode-format-specification.html) object.
+> - The `BarcodeFormatIds` in the same `BarcodeFormatSpecification` determines which barcode formats this setting applies to.
+> - 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)
+
+## Parameter Details
+
+The structure of the `AutoDetectColorInversion` is shown as follow:
+
+| AutoDetectColorInversion Parameter Details |
+| :--------------------------------- |
+| **Type**
*int* |
+| **Range**
[0, 1] |
+| **Default Value**
0 |
+
+**Remarks**
+
+- 0: Disabled. The SDK does not perform additional inverted-color detection at the barcode-candidate level. Whether normal (dark-on-light) or inverted (light-on-dark) barcodes can be decoded depends entirely on the [`GrayscaleTransformationModes`]({{ site.dcvb_parameters_reference }}image-parameter/grayscale-transformation-modes.html) setting.
+- 1: Enabled. In addition to the behavior determined by `GrayscaleTransformationModes`, the SDK automatically detects whether a candidate barcode region has inverted colors and decodes it accordingly. This means both normal and inverted barcodes can be decoded regardless of the `GrayscaleTransformationModes` setting.
+
+### Supported Barcode Formats
+
+In the current version, the following barcode formats support automatic color-inversion detection:
+
+| Barcode Format | Supported Since |
+|---|---|
+| `BF_DATAMATRIX` | v11.6.1000 |
+
+Support for additional formats (e.g., QR Code, PDF417, Aztec) is planned for future releases.
+
+### Difference from GrayscaleTransformationModes
+
+This parameter works at the **candidate-barcode level** during decoding, which is fundamentally different from the **image-level** [`GrayscaleTransformationModes`]({{ site.dcvb_parameters_reference }}image-parameter/grayscale-transformation-modes.html):
+
+| | `GrayscaleTransformationModes` | `AutoDetectColorInversion` |
+|---|---|---|
+| **Scope** | Entire image | Per candidate barcode region |
+| **Timing** | Before localization | During localization |
+| **Granularity** | Affects all barcode types globally | Per-format via `BarcodeFormatIds` |
+| **Performance cost** | High (processes entire image twice when both `GTM_ORIGINAL` and `GTM_INVERTED` are set) | Low (only checks targeted candidate regions) |
+
+**When to use which:**
+- Use `AutoDetectColorInversion` when only certain barcode formats may be inverted, while other barcodes on the same image are normal. This is more efficient and precise.
+- Use `GrayscaleTransformationModes` with `GTM_INVERTED` when the entire image has inverted colors, or when you need to handle inverted barcodes of formats not yet supported by `AutoDetectColorInversion`.
+- The two parameters can be used together. `GrayscaleTransformationModes` is applied first at the image level, then `AutoDetectColorInversion` performs additional per-region detection during decoding.
diff --git a/parameters/reference/capture-vision-template/image-roi-processing-name-array.md b/parameters/reference/capture-vision-template/image-roi-processing-name-array.md
index a462c93..82ea53d 100644
--- a/parameters/reference/capture-vision-template/image-roi-processing-name-array.md
+++ b/parameters/reference/capture-vision-template/image-roi-processing-name-array.md
@@ -3,7 +3,6 @@ layout: default-layout
title: ImageROIProcessingNameArray - Dynamsoft Capture Vision Parameters
description: Reference for the ImageROIProcessingNameArray parameter in the Dynamsoft Capture Vision CaptureVisionTemplate object, which lists the names of TargetROIDef objects that define the recognition tasks (barcode reading, label recognition, document detection) to run on image regions of interest.
keywords: image ROI processing, TargetROIDef, CaptureVisionTemplate
-permalink: /parameters/reference/capture-vision-template/image-roi-processing-name-array.html
---
# ImageROIProcessingNameArray
diff --git a/parameters/reference/capture-vision-template/image-source-name.md b/parameters/reference/capture-vision-template/image-source-name.md
index 5d57093..bdcb895 100644
--- a/parameters/reference/capture-vision-template/image-source-name.md
+++ b/parameters/reference/capture-vision-template/image-source-name.md
@@ -3,7 +3,6 @@ layout: default-layout
title: ImageSourceName - Dynamsoft Capture Vision Parameters
description: The parameter ImageSourceName of Dynamsoft Capture Vision defines the name of the ImageSource object.
keywords: image source, CaptureVisionTemplate
-permalink: /parameters/reference/capture-vision-template/image-source-name.html
---
# ImageSourceName
diff --git a/parameters/reference/capture-vision-template/max-parallel-tasks.md b/parameters/reference/capture-vision-template/max-parallel-tasks.md
index 1273e77..8b3a2e3 100644
--- a/parameters/reference/capture-vision-template/max-parallel-tasks.md
+++ b/parameters/reference/capture-vision-template/max-parallel-tasks.md
@@ -3,7 +3,6 @@ layout: default-layout
title: MaxParallelTasks - Dynamsoft Capture Vision Parameters
description: The parameter MaxParallelTasks defines the maximum number of parallel tasks for the DCV runtime.
keywords: Max parallel tasks, CaptureVisionTemplate
-permalink: /parameters/reference/capture-vision-template/max-parallel-tasks.html
---
# MaxParallelTasks
@@ -41,4 +40,21 @@ CaptureVisionTemplates[i]
| **Type**
*int* |
| **Range**
-1, 0, [1, 256] |
| **Default Value**
4 |
-| **Remarks**
1) 0: Only open the management thread, the execution task thread and the management thread are the same thread.
2) -1: Do not open the management thread or the task thread, that is, run in the thread that calls StartCapturing. |
+| **Remarks**
Controls the total number of concurrent thread slots used by the CVR thread pool. |
+
+## Behavior
+
+- Each DLR/DDN task occupies one thread slot.
+- For DBR tasks, each localization work and each decoding work occupies one thread slot.
+- When `MaxParallelTasks <= 1`, DBR runs in single-threaded mode.
+
+In single-threaded mode for DBR, processing is executed in sequence:
+
+1. Complete one `LocalizationMode` and produce localized barcode regions.
+2. Apply all configured `DeblurMode`s to each localized barcode region.
+3. Continue with the next `LocalizationMode`.
+
+
+**Remarks**
+
+- Updated semantic definition from "maximum parallel tasks" to "maximum concurrent thread slots in the CVR thread pool" in version 3.6.1000.
diff --git a/parameters/reference/capture-vision-template/name.md b/parameters/reference/capture-vision-template/name.md
index f160154..942b80c 100644
--- a/parameters/reference/capture-vision-template/name.md
+++ b/parameters/reference/capture-vision-template/name.md
@@ -3,7 +3,6 @@ layout: default-layout
title: Name - Dynamsoft Capture Vision Parameter Reference CaptureVisionTemplate Object.
description: The parameter Name defines the unique identifier of CaptureVisionTemplate object.
keywords: top-level object, name, unique identifier
-permalink: /parameters/reference/capture-vision-template/name.html
---
# Name
diff --git a/parameters/reference/capture-vision-template/output-original-Image.md b/parameters/reference/capture-vision-template/output-original-Image.md
index b35e5de..67f8bc6 100644
--- a/parameters/reference/capture-vision-template/output-original-Image.md
+++ b/parameters/reference/capture-vision-template/output-original-Image.md
@@ -3,7 +3,6 @@ layout: default-layout
title: OutputOriginalImage - Dynamsoft Capture Vision Parameters
description: The parameter OutputOriginalImage indicates whether DCV finally outputs the original input image.
keywords: original image, captured results, CaptureVisionTemplate
-permalink: /parameters/reference/capture-vision-template/output-original-image.html
---
# OutputOriginalImage
diff --git a/parameters/reference/capture-vision-template/semantic-processing-name-array.md b/parameters/reference/capture-vision-template/semantic-processing-name-array.md
index 4118653..96bcff5 100644
--- a/parameters/reference/capture-vision-template/semantic-processing-name-array.md
+++ b/parameters/reference/capture-vision-template/semantic-processing-name-array.md
@@ -3,7 +3,6 @@ layout: default-layout
title: SemanticProcessingNameArray - Dynamsoft Capture Vision Parameters
description: Reference for the SemanticProcessingNameArray parameter in the Dynamsoft Capture Vision CaptureVisionTemplate object, which lists the names of SemanticProcessing objects to execute - enabling post-processing code parsing tasks (e.g. VIN or MRZ parsing) after image ROI processing.
keywords: sematic processing, CaptureVisionTemplate
-permalink: /parameters/reference/capture-vision-template/semantic-processing-name-array.html
---
# SemanticProcessingNameArray
diff --git a/parameters/reference/capture-vision-template/timeout.md b/parameters/reference/capture-vision-template/timeout.md
index 39dd3c2..ffec871 100644
--- a/parameters/reference/capture-vision-template/timeout.md
+++ b/parameters/reference/capture-vision-template/timeout.md
@@ -3,7 +3,6 @@ layout: default-layout
title: Timeout - Dynamsoft Capture Vision Parameters
description: The parameter Timeout defines the maximum amount of time (in milliseconds) that the recognition tasks should take per page.
keywords: timeout, CaptureVisionTemplate
-permalink: /parameters/reference/capture-vision-template/timeout.html
---
# Timeout
diff --git a/parameters/reference/code-parser-task-settings/name.md b/parameters/reference/code-parser-task-settings/name.md
index 310bf07..7322112 100644
--- a/parameters/reference/code-parser-task-settings/name.md
+++ b/parameters/reference/code-parser-task-settings/name.md
@@ -3,7 +3,6 @@ layout: default-layout
title: Name - Dynamsoft Capture Vision Parameter Reference CodeParserTaskSetting Object.
description: The parameter Name defines the unique identifier of CodeParserTaskSetting object.
keywords: top-level object, name, unique identifier
-permalink: /parameters/reference/code-parser-task-settings/name.html
---
# Name
diff --git a/parameters/reference/code-parser-task-settings/resources-path.md b/parameters/reference/code-parser-task-settings/resources-path.md
index 18a66c5..22e67a6 100644
--- a/parameters/reference/code-parser-task-settings/resources-path.md
+++ b/parameters/reference/code-parser-task-settings/resources-path.md
@@ -2,7 +2,6 @@
layout: default-layout
title: ResourcesPath - Dynamsoft Capture Vision Parameter Reference
description: Reference for the ResourcesPath parameter in the Dynamsoft Capture Vision CodeParserTaskSetting object, which specifies the directory (absolute or relative) containing the .dcpres resource files needed for code parsing.
-permalink: /parameters/reference/code-parser-task-settings/resources-path.html
---
# ResourcesPath
diff --git a/parameters/reference/image-parameter/grayscale-transformation-modes.md b/parameters/reference/image-parameter/grayscale-transformation-modes.md
index 07d534d..c44746a 100644
--- a/parameters/reference/image-parameter/grayscale-transformation-modes.md
+++ b/parameters/reference/image-parameter/grayscale-transformation-modes.md
@@ -124,4 +124,8 @@ Transforms the image to inverted grayscale.
### GTM_AUTO
-Let the library choose automatically for grayscale transformation.
\ No newline at end of file
+Let the library choose automatically for grayscale transformation.
+
+## See Also
+
+- [`AutoDetectColorInversion`]({{ site.dcvb_parameters_reference }}barcode-format-specification/auto-detect-color-inversion.html) - A lighter-weight alternative that detects inverted colors per barcode candidate region during decoding, rather than inverting the entire image. It is configured per barcode format in `BarcodeFormatSpecification` and is more efficient when only certain barcode formats may be inverted.
\ No newline at end of file
diff --git a/parameters/reference/image-source-options/directory-path.md b/parameters/reference/image-source-options/directory-path.md
index 92c92c6..670d986 100644
--- a/parameters/reference/image-source-options/directory-path.md
+++ b/parameters/reference/image-source-options/directory-path.md
@@ -3,7 +3,6 @@ layout: default-layout
title: DirectoryPath - ImageSource - Dynamsoft Capture Vision Parameters
description: Reference for the DirectoryPath parameter in the Dynamsoft Capture Vision ImageSource object, which specifies the local directory path from which image files are fetched for processing.
keywords: Directory path
-permalink: /parameters/reference/image-source-options/directory-path.html
---
# DirectoryPath
diff --git a/parameters/reference/image-source-options/pdf-reading-mode.md b/parameters/reference/image-source-options/pdf-reading-mode.md
index 46450db..e6bb684 100644
--- a/parameters/reference/image-source-options/pdf-reading-mode.md
+++ b/parameters/reference/image-source-options/pdf-reading-mode.md
@@ -3,7 +3,6 @@ layout: default-layout
title: PDFReadingMode - Dynamsoft Capture Vision Parameters
description: Reference for the PDFReadingMode parameter in the Dynamsoft Capture Vision ImageSource object, which controls how PDF files are rendered into images, including the reading mode (raster/vector/auto), DPI, and raster data source.
keywords: PDF reading mode, ISA
-permalink: /parameters/reference/image-source-options/pdf-reading-mode.html
---
# PDFReadingMode
diff --git a/parameters/reference/image-source-options/recursive.md b/parameters/reference/image-source-options/recursive.md
index 8d83064..9c86fd9 100644
--- a/parameters/reference/image-source-options/recursive.md
+++ b/parameters/reference/image-source-options/recursive.md
@@ -3,7 +3,6 @@ layout: default-layout
title: Recursive - Dynamsoft Capture Vision Parameters
description: Reference for the Recursive parameter in the Dynamsoft Capture Vision ImageSource object, which indicates whether image files are fetched from subdirectories recursively (1) or only from the top-level directory (0).
keywords: Recursive, ISA
-permalink: /parameters/reference/image-source-options/recursive.html
---
# Recursive
diff --git a/parameters/reference/image-source-options/type.md b/parameters/reference/image-source-options/type.md
index 2b07579..8487266 100644
--- a/parameters/reference/image-source-options/type.md
+++ b/parameters/reference/image-source-options/type.md
@@ -3,7 +3,6 @@ layout: default-layout
title: Type - Dynamsoft Capture Vision Parameters
description: Reference for the Type parameter in the Dynamsoft Capture Vision ImageSource object, which specifies the image source type (IST_DIRECTORY_FETCHER, IST_CAMERA_ENHANCER, or IST_SCANNER_CONNECTOR) so CVR can create the correct image source instance.
keywords: Type, ISA
-permalink: /parameters/reference/image-source-options/type.html
---
# Type
diff --git a/parameters/reference/label-recognizer-task-settings/orientation-detection-modes.md b/parameters/reference/label-recognizer-task-settings/orientation-detection-modes.md
new file mode 100644
index 0000000..c27eb53
--- /dev/null
+++ b/parameters/reference/label-recognizer-task-settings/orientation-detection-modes.md
@@ -0,0 +1,113 @@
+---
+layout: default-layout
+title: OrientationDetectionModes - Dynamsoft Label Recognizer Parameters
+description: Reference for the OrientationDetectionModes parameter in Dynamsoft Label Recognizer, which enables automatic text line orientation detection using spatial references or neural network models.
+keywords: OrientationDetectionModes, parameter reference, parameter
+---
+
+# OrientationDetectionModes
+
+Parameter `OrientationDetectionModes` is an array of orientation detection mode objects used in the `SST_LOCALIZE_TEXT_LINES` stage. Each object specifies a method for determining the orientation of detected text lines. Once a mode successfully determines the orientation, subsequent modes in the array are not evaluated. By default, this parameter is `null` and no orientation detection is performed.
+
+**Remarks**
+
+- Introduced in Dynamsoft Capture Vision version 3.6.1000.
+
+## JSON Structure
+
+**Location in template:**
+```
+LabelRecognizerTaskSettingOptions[i]
+ └── SectionArray[j] (Section object)
+ └── StageArray[k] (Stage object where Stage = "SST_LOCALIZE_TEXT_LINES")
+ └── OrientationDetectionModes
+```
+
+**Parent object:** [LocalizeTextLinesStage](stage-localize-text-lines.md)
+
+**Example:**
+
+```json
+{
+ "OrientationDetectionModes": [
+ {
+ "Mode": "ODM_SPATIAL_REFERENCES"
+ },
+ {
+ "Mode": "ODM_CHARS_ORIENTATION_NEURAL_NETWORK",
+ "ModelNameArray": ["TextLineOrientationCls"]
+ }
+ ]
+}
+```
+
+> [!NOTE]
+> - This snippet shows only the `OrientationDetectionModes` parameter.
+> - To use it, embed this parameter within a [LocalizeTextLinesStage](stage-localize-text-lines.md) object.
+> - 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)
+
+## Parameter Details
+
+Parameter `OrientationDetectionModes` consists of a group of orientation detection mode objects. Each orientation detection mode object includes a candidate mode and a series of mode arguments. The mode arguments of the orientation detection mode object are shown as follows:
+
+### Mode Arguments
+
+
+
+
+ | Mode Argument Name |
+ Mode Argument Summary |
+
+
+
+ Mode (Required) |
+ Description Any one in Candidate Mode List as string
+ |
+
+
+ Type String
+ |
+
+
+ Candidate Mode List ODM_SPATIAL_REFERENCES
+ ODM_CHARS_ORIENTATION_NEURAL_NETWORK
+ |
+
+
+ Default Value N/A
+ |
+
+
+ ModelNameArray (Optional) |
+ Description An array of model names used for neural network-based orientation detection. The default model TextLineOrientationCls supports 0° and 180° orientation detection.
+ |
+
+
+ Type array of string
+ |
+
+
+ Default Value ["TextLineOrientationCls"]
+ |
+
+
+ Valid For ODM_CHARS_ORIENTATION_NEURAL_NETWORK
+ |
+
+
+
+### Candidate Modes
+
+#### ODM_SPATIAL_REFERENCES
+
+Determines text line orientation by analyzing the spatial relationships between reference objects. No additional arguments are available for this mode.
+
+#### ODM_CHARS_ORIENTATION_NEURAL_NETWORK
+
+Determines text line orientation using a neural network model applied to individual text lines. Supports 0° and 180° orientation classification.
+
+**Available Mode Arguments:**
+
+- ModelNameArray
\ No newline at end of file
diff --git a/parameters/reference/label-recognizer-task-settings/stage-localize-text-lines.md b/parameters/reference/label-recognizer-task-settings/stage-localize-text-lines.md
index ad7685a..46f9e59 100644
--- a/parameters/reference/label-recognizer-task-settings/stage-localize-text-lines.md
+++ b/parameters/reference/label-recognizer-task-settings/stage-localize-text-lines.md
@@ -24,7 +24,25 @@ LabelRecognizerTaskSettingOptions[i]
```json
{
- "Stage": "SST_LOCALIZE_TEXT_LINES"
+ "Stage": "SST_LOCALIZE_TEXT_LINES",
+ "LocalizationModes": [
+ {
+ "Mode": "LM_NEURAL_NETWORK",
+ "ModelNameArray": ["MRZLocalization"]
+ },
+ {
+ "Mode": "LM_GENERAL"
+ }
+ ],
+ "OrientationDetectionModes": [
+ {
+ "Mode": "ODM_SPATIAL_REFERENCES"
+ },
+ {
+ "Mode": "ODM_CHARS_ORIENTATION_NEURAL_NETWORK",
+ "ModelNameArray": ["TextLineOrientationCls"]
+ }
+ ]
}
```
@@ -46,3 +64,11 @@ Specifies the stage type. Fixed value: `SST_LOCALIZE_TEXT_LINES`.
| **Type**
*string* |
| **Required**
Yes |
| **Default Value**
`"SST_LOCALIZE_TEXT_LINES"` |
+
+### LocalizationModes
+
+Determines how to localize text lines. See [LocalizationModes](localization-modes.md) for details.
+
+### OrientationDetectionModes
+
+Specifies the method for determining the orientation of detected text lines. See [OrientationDetectionModes](orientation-detection-modes.md) for details.
diff --git a/parameters/reference/output-task-setting/name.md b/parameters/reference/output-task-setting/name.md
index 7eb3f34..e038893 100644
--- a/parameters/reference/output-task-setting/name.md
+++ b/parameters/reference/output-task-setting/name.md
@@ -6,7 +6,6 @@ keywords: top-level object, name, unique identifier
needAutoGenerateSidebar: true
noTitleIndex: true
needGenerateH3Content: true
-permalink: /parameters/reference/output-task-setting/name.html
---
# Name
diff --git a/parameters/reference/target-roi-def/base-target-roidef-name.md b/parameters/reference/target-roi-def/base-target-roidef-name.md
index 5be327c..adef664 100644
--- a/parameters/reference/target-roi-def/base-target-roidef-name.md
+++ b/parameters/reference/target-roi-def/base-target-roidef-name.md
@@ -3,7 +3,6 @@ layout: default-layout
title: BaseTargetROIDefName - Dynamsoft Capture Vision Parameters
description: The parameter BaseTargetROIDefName of Dynamsoft Capture Vision defines the name of the inherited TargetROIDef object.
keywords: inheritance, TargetROIDef
-permalink: /parameters/reference/target-roi-def/base-target-roidef-name.html
---
# BaseTargetROIDefName
diff --git a/parameters/reference/target-roi-def/name.md b/parameters/reference/target-roi-def/name.md
index 4b32e3c..e36e501 100644
--- a/parameters/reference/target-roi-def/name.md
+++ b/parameters/reference/target-roi-def/name.md
@@ -3,7 +3,6 @@ layout: default-layout
title: Name - Dynamsoft Capture Vision TargetROIDef object
description: The parameter Name defines the unique identifier of TargetROIDef object.
keywords: top-level object, name, unique identifier
-permalink: /parameters/reference/target-roi-def/name.html
---
# Name
diff --git a/parameters/reference/target-roi-def/pause-flag.md b/parameters/reference/target-roi-def/pause-flag.md
index 2af534f..91cd72b 100644
--- a/parameters/reference/target-roi-def/pause-flag.md
+++ b/parameters/reference/target-roi-def/pause-flag.md
@@ -3,7 +3,6 @@ layout: default-layout
title: PauseFlag - Dynamsoft Capture Vision Parameters
description: Reference for the PauseFlag parameter in the Dynamsoft Capture Vision TargetROIDef object, which indicates that the region results of this TargetROIDef will not automatically be consumed by dependent TargetROIDef objects - requiring an explicit user update to proceed.
keywords: raw image, captured results, TargetROIDef
-permalink: /parameters/reference/target-roi-def/pause-flag.html
---
# PauseFlag
diff --git a/parameters/reference/target-roi-def/task-setting-name-array.md b/parameters/reference/target-roi-def/task-setting-name-array.md
index 8ef48d5..1c59947 100644
--- a/parameters/reference/target-roi-def/task-setting-name-array.md
+++ b/parameters/reference/target-roi-def/task-setting-name-array.md
@@ -3,7 +3,6 @@ layout: default-layout
title: TaskSettingNameArray - Dynamsoft Capture Vision Parameters
description: Reference for the TaskSettingNameArray parameter in the Dynamsoft Capture Vision TargetROIDef object, which lists the names of task setting objects (BarcodeReaderTaskSetting, LabelRecognizerTaskSetting, DocumentNormalizerTaskSetting, or OutputTaskSetting) to execute on the target ROI.
keywords: task settings, TargetROIDef
-permalink: /parameters/reference/target-roi-def/task-setting-name-array.html
---
# TaskSettingNameArray