VintaSoft Barcode .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / AdaptiveBinarizationStep Property
Syntax Remarks Requirements SeeAlso
In This Topic
    AdaptiveBinarizationStep Property (ReaderSettings)
    In This Topic
    Gets or sets the step, in pixels, of adaptive binarization algorithm.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(0)>
    <DescriptionAttribute("The step, in pixels, of adaptive binarization algorithm.")>
    Public Property AdaptiveBinarizationStep As Integer
    
    
    [DefaultValue(0)]
    [Description("The step, in pixels, of adaptive binarization algorithm.")]
    public int AdaptiveBinarizationStep { get; set; }
    
    
    [DefaultValue(0)]
    [Description("The step, in pixels, of adaptive binarization algorithm.")]
    public: __property int get_AdaptiveBinarizationStep();
    public: __property void set_AdaptiveBinarizationStep(
    int value
    );
    [DefaultValue(0)]
    [Description("The step, in pixels, of adaptive binarization algorithm.")]
    public:
    property int AdaptiveBinarizationStep { int get(); void set(int value); }

    Property Value

    0 - adaptive binarization is not used.
    Default value is 0.
    Remarks

    This property should be used if barcode image has uneven lighting.
    Value of this property should be slightly larger than the size of a single barcode module.
    This property has effect in all barcode recognition modes except the automatic barcode recognition mode (AutomaticRecognition).

    Requirements

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

    See Also