VintaSoft Barcode .NET SDK 16.0: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / UseBarcodeRegionDetectors Property
Syntax Remarks Requirements SeeAlso
In This Topic
    UseBarcodeRegionDetectors Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader should detect barcode regions using AI-based or custom barcode region detectors.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Indicating whether the barcode reader should detect barcode regions using AI-based or custom barcode region detectors.")>
    <DefaultValueAttribute(True)>
    Public Property UseBarcodeRegionDetectors As Boolean
    
    
    [Description("Indicating whether the barcode reader should detect barcode regions using AI-based or custom barcode region detectors.")]
    [DefaultValue(True)]
    public bool UseBarcodeRegionDetectors { get; set; }
    
    
    [Description("Indicating whether the barcode reader should detect barcode regions using AI-based or custom barcode region detectors.")]
    [DefaultValue(True)]
    public: __property bool get_UseBarcodeRegionDetectors();
    public: __property void set_UseBarcodeRegionDetectors(
    bool value
    );
    [Description("Indicating whether the barcode reader should detect barcode regions using AI-based or custom barcode region detectors.")]
    [DefaultValue(True)]
    public:
    property bool UseBarcodeRegionDetectors { bool get(); void set(bool value); }

    Property Value

    Default value is true.
    Remarks

    Enabling of this feature can greatly increase the barcode recognition speed if barcodes are recognizing in large image or image contains many barcodes or image contains unknown count of barcodes.

    If AI-based barcode region detectors for 1D barcodes should be used, .NET application should have reference to the Vintasoft.Barcode.AI.1D.dll assembly and call code "Vintasoft.Barcode.Ai1DAssembly.Init()" at the beginning of .NET application.
    If AI-based barcode region detectors for 2D barcodes should be used, .NET application should have reference to the Vintasoft.Barcode.AI.2D.dll assembly and call code "Vintasoft.Barcode.Ai2DAssembly.Init()" at the beginning of .NET application.

    Requirements

    Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also