Need better scanning performance?
EnhanceImageStage
EnhanceImageStage adjusts the image quality, such as changing the brightness, contrast, and the color mode of the image. In JSON, it is represented as a Stage object with "Stage": "SST_ENHANCE_IMAGE".
JSON Structure
Location in template:
DocumentNormalizerTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_ENHANCE_IMAGE")
Parent object: StageArray within ImageEnhancementSection
Example:
{
"Stage": "SST_ENHANCE_IMAGE",
"ColourMode": "ICM_COLOUR",
"Brightness": 0,
"Contrast": 0
}
- This snippet shows a Stage object configured for enhancing images.
- To use it, add this object to the
StageArraywithin an ImageEnhancementSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_ENHANCE_IMAGE.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_ENHANCE_IMAGE" |
ColourMode
Defines the output colour mode of the target image. See ColourMode for details.
Brightness
Defines the brightness of the target image. See Brightness for details.
Contrast
Specifies the contrast of the target image. See Contrast for details.