Table of contents

BarcodeReaderTaskSetting Object

In Dynamsoft Capture Vision(DCV), we use Json files to configure and organize the process tasks. The BarcodeReaderTaskSetting described in this chapter is one of the configurable tasks. If you have more strict requirements for speed or accuracy, it is highly recommended that you start by trying the barcode reader task settings.

Available Settings

All available parameters related to barcode decoding are listed here, along with a brief description.

Parameter Name Description
BarcodeFormatIds Sets which barcode format the current FormatSpecification configuration is applied to.
BarcodeFormatSpecificationNameArray The names of the referenced BarcodeFormatSpecification object(s).
DPMCodeReadingModes Sets the mode and priority for DPM code reading.
ExpectedBarcodesCount Sets the number of barcodes expected to be detected for each image.
MaxThreadsInOneTask Represents the maximum number of parallel threads that can be used on a single task.
Name The name of the BarcodeReaderTaskSetting object.
ReturnBarcodeZoneClarity Sets whether or not to return the clarity of the barcode zone.
SectionArray Defines which sections exist under the BarcodeReaderTaskSetting.
TextResultOrderModes Sets the mode and priority for the order of the text results returned.
BaseBarcodeReaderTaskSettingName Sets the name of a BarcodeReaderTaskSetting object to be Inheritanced.

When DCV executes tasks related to barcode reading, it will process them according to the settings in the BarcodeReaderTaskSetting. Here is a sample:

Barcode Reader Task Setting Example

 {
    "Name": "BR_0",
    "MaxThreadsInOneTask":4, 
    "ExpectedBarcodesCount" : 512,
    "BarcodeFormatIds" : [ "BF_ALL" ],
    "BarcodeFormatSpecificationNameArray" : null,
    "DPMCodeReadingModes" : [
        {
            "Mode" : "DPMCRM_SKIP"
        }
    ],
    "ReturnBarcodeZoneClarity" : 0,
    "SectionArray": [
        {
            "Section": "ST_REGION_PREDETECTION",
            "ImageParameterName": "ip_dbrDefault",
            "StageArray": [
                {
                    "Stage": "SST_PREDETECT_REGIONS",
                    "RegionPredetectionModes": []
                }
            ]
        },
        {
            "Section": "ST_BARCODE_LOCALIZATION",
            "ImageParameterName": "ip_dbrDefault",
            "StageArray": [
                {
                    "Stage": "SST_LOCALIZE_CANDIDATE_BARCODES",
                    "LocalizationModes": []
                },
                {
                    "Stage": "SST_LOCALIZE_BARCODES"
                }
            ]
        },
        {
            "Section": "ST_BARCODE_DECODING",
            "ImageParameterName": "ip_dbrDefault",
            "StageArray": [
                {
                    "Stage": "SST_COMPLEMENT_BARCODE",
                    "BarcodeComplementModes": []
                },
                {
                    "Stage": "SST_RESIST_DEFORMATION",
                    "DeformationResistingModes": []
                },
                {
                    "Stage": "SST_SCALE_BARCODE_IMAGE",
                    "BarcodeScaleModes": []
                },
                {
                    "Stage": "SST_DECODE_BARCODES",
                    "DeblurModes": []
                }
            ]
        }
    ],
    "TextResultOrderModes" : [
        {
            "Mode" : "TROM_CONFIDENCE"
        }
    ],
    "BaseBarcodeReaderTaskSettingName": ""
}

Is this page helpful?

YesYes NoNo