VintaSoft Barcode .NET SDK 15.1: Documentation for Web developer
Vintasoft.Barcode.Web.Services Namespace / WebBarcodeRecognitionResult Class / readingQuality Property
Syntax Remarks Requirements SeeAlso
In This Topic
    readingQuality Property (WebBarcodeRecognitionResult)
    In This Topic
    Gets or sets the barcode reading quality.
    Syntax
    'Declaration
    
    Public Property readingQuality As Double
    
    
    public double readingQuality { get; set; }
    
    
    public: __property double get_readingQuality();
    public: __property void set_readingQuality(
    double value
    );
    public:
    property double readingQuality { double get(); void set(double value); }

    Property Value

    Possible values: from 0 to 1.
    Remarks

    This property has correct value if value of the ScanInterval is set to 1.
    Barcode is ideal if value of this property is close to 1.
    Barcode has more than a half of scan lines damaged if value of this property is less than 0.5.
    This property has no relation to the barcode string value, it only shows how many scan lines of barcode are correct.
    Use the confidence property if you want to know confidence of barcode.

    Requirements

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

    See Also