Need better scanning performance?
ImageEnhancementSection
ImageEnhancementSection adjusts the image quality. In JSON, it is represented as a Section object with "Section": "ST_IMAGE_ENHANCEMENT".
JSON Structure
Location in template:
DocumentNormalizerTaskSettingOptions[i]
└── SectionArray[j] (Section object where Section = "ST_IMAGE_ENHANCEMENT")
Parent object: SectionArray
Example:
{
"Section": "ST_IMAGE_ENHANCEMENT",
"ImageParameterName": "ip_ddnDefault",
"StageArray": [
{
"Stage": "SST_ENHANCE_IMAGE"
}
]
}
- This snippet shows a Section object configured for image enhancement.
- To use it, add this object to the SectionArray of a DocumentNormalizerTaskSetting.
- For the complete JSON structure, see:
Parameters
Section
Specifies the section type. Fixed value: ST_IMAGE_ENHANCEMENT.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"ST_IMAGE_ENHANCEMENT" |
ImageParameterName
Specifies the name of an ImageParameter object to apply in the stages of this section.
| Parameter Details |
|---|
| Type string |
| Range Must be the name of an ImageParameter object defined under ImageParameterOptions |
Default Value"" |
StageArray
Specifies the stage objects within this section. The ImageEnhancementSection consists of the following stages:
| Stage | Description |
|---|---|
EnhanceImageStage (SST_ENHANCE_IMAGE) |
Adjusts the image quality, such as changing the brightness, contrast, and color mode. |