VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / MinConfidence Property
Syntax Remarks Requirements SeeAlso
In This Topic
    MinConfidence Property (ReaderSettings)
    In This Topic
    Gets or sets the minimum value of confidence, in percents.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(95)>
    <DescriptionAttribute("Minimum value of confidence, in percents.")>
    Public Property MinConfidence As Integer
    
    
    [DefaultValue(95)]
    [Description("Minimum value of confidence, in percents.")]
    public int MinConfidence { get; set; }
    
    
    [DefaultValue(95)]
    [Description("Minimum value of confidence, in percents.")]
    public: __property int get_MinConfidence();
    public: __property void set_MinConfidence(
    int value
    );
    [DefaultValue(95)]
    [Description("Minimum value of confidence, in percents.")]
    public:
    property int MinConfidence { int get(); void set(int value); }

    Property Value

    Default value is 95.
    Remarks

    Barcode will be dropped if it's Confidence value less than MinConfidence.

    You should set value of this property to 0 if you want to see all searched barcodes.
    You should set value of this property to 95 if you want to see "good" barcodes only.

    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