Need better scanning performance?
LocalizeCandidateBarcodesStage
LocalizeCandidateBarcodesStage detects and marks potential barcode locations within the image for further processing. In JSON, it is represented as a Stage object with "Stage": "SST_LOCALIZE_CANDIDATE_BARCODES".
JSON Structure
Location in template:
BarcodeReaderTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_LOCALIZE_CANDIDATE_BARCODES")
Parent object: StageArray within BarcodeLocalizationSection
Example:
{
"Stage": "SST_LOCALIZE_CANDIDATE_BARCODES",
"LocalizationModes": [
{
"Mode": "LM_CONNECTED_BLOCKS"
}
]
}
- This snippet shows a Stage object configured for localizing candidate barcodes.
- To use it, add this object to the
StageArraywithin a BarcodeLocalizationSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_LOCALIZE_CANDIDATE_BARCODES.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_LOCALIZE_CANDIDATE_BARCODES" |
LocalizationModes
Controls how to localize barcodes. See LocalizationModes for details.