VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / AutomaticRecognition Property
Syntax Remarks Requirements SeeAlso
In This Topic
    AutomaticRecognition Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader enables the special automatic recognition mode.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Barcode reader enables the special automatic recognition mode.")>
    <DefaultValueAttribute(True)>
    Public Property AutomaticRecognition As Boolean
    
    
    [Description("Barcode reader enables the special automatic recognition mode.")]
    [DefaultValue(True)]
    public bool AutomaticRecognition { get; set; }
    
    
    [Description("Barcode reader enables the special automatic recognition mode.")]
    [DefaultValue(True)]
    public: __property bool get_AutomaticRecognition();
    public: __property void set_AutomaticRecognition(
    bool value
    );
    [Description("Barcode reader enables the special automatic recognition mode.")]
    [DefaultValue(True)]
    public:
    property bool AutomaticRecognition { bool get(); void set(bool value); }

    Property Value

    false - the special automatic recognition mode is disabled; true - the special automatic recognition mode is enabled. Default value is true.
    Remarks

    Special automatic recognition mode is combination of some recognition algorithms and gives the best quality of recognition and it should be used for reading of barcodes with bad quality only.

    Correct number of expected barcodes is very important because recognition will be stopped when expected number of barcodes is found.

    Important: This mode does not have stable speed like the manual mode. Speed of recognition in this mode will be from T to 12*T, where T is speed of recognition in the manual mode with automatic threshold. 12*T is the bad case when the expected number of barcodes is not reached.

    ThresholdIterations, ThresholdMode and Threshold properties are ignored if value of this property is set to true.

    Requirements

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

    See Also