Need better scanning performance?
ResistDeformationStage
ResistDeformationStage applies preprocessing techniques to reduce image deformation and improve barcode recognition accuracy. In JSON, it is represented as a Stage object with "Stage": "SST_RESIST_DEFORMATION".
JSON Structure
Location in template:
BarcodeReaderTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_RESIST_DEFORMATION")
Parent object: StageArray within BarcodeDecodingSection
Example:
{
"Stage": "SST_RESIST_DEFORMATION",
"DeformationResistingModes": [
{
"Mode": "DRM_SKIP"
}
]
}
- This snippet shows a Stage object configured for deformation resistance.
- To use it, add this object to the
StageArraywithin a BarcodeDecodingSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_RESIST_DEFORMATION.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_RESIST_DEFORMATION" |
DeformationResistingModes
Defines how to handle distorted and deformed barcodes. See DeformationResistingModes for details.