VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / RemovePeas Property
Syntax Remarks Requirements SeeAlso
In This Topic
    RemovePeas Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader removes "peas" from the image with barcodes before barcode search.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Barcode reader removes "peas" from the image with barcodes before barcode search.")>
    <DefaultValueAttribute(True)>
    Public Property RemovePeas As Boolean
    
    
    [Description("Barcode reader removes "peas" from the image with barcodes before barcode search.")]
    [DefaultValue(True)]
    public bool RemovePeas { get; set; }
    
    
    [Description("Barcode reader removes "peas" from the image with barcodes before barcode search.")]
    [DefaultValue(True)]
    public: __property bool get_RemovePeas();
    public: __property void set_RemovePeas(
    bool value
    );
    [Description("Barcode reader removes "peas" from the image with barcodes before barcode search.")]
    [DefaultValue(True)]
    public:
    property bool RemovePeas { bool get(); void set(bool value); }

    Property Value

    true - enables remove of "peas" from image,
    false - disables remove of "peas" from image.
    Default value is true.
    Remarks

    "Peas" - specific noise in the image.
    You should not enable this feature if you have good barcodes because this feature can decrease barcode reading speed.

    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