Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / Reader Class / GrayscaleProcessing Property




In This Topic
    GrayscaleProcessing Property
    In This Topic
    Gets and sets a value which determines if grayscale processing will be performed on images that are 8bpp or 24bpp.
    Syntax
    'Declaration
     
    Public Property GrayscaleProcessing As Boolean
    'Usage
     
    Dim instance As Reader
    Dim value As Boolean
     
    instance.GrayscaleProcessing = value
     
    value = instance.GrayscaleProcessing
    public bool GrayscaleProcessing {get; set;}
    public: __property bool get_GrayscaleProcessing();
    public: __property void set_GrayscaleProcessing( 
       bool value
    );
    public:
    property bool GrayscaleProcessing {
       bool get();
       void set (    bool value);
    }

    Property Value

    A boolean value which represents whether or not grayscale processing will be performed.
    Remarks

    If this property is set to true, grayscale processing of specific 1D images will be performed on applicable 8bpp and 24bpp images. This property does not have any effect for any images that are less than 8bpp. When set, the recognition engine will first attempt to find any barcodes in the grayscale colorspace, then will perform normal recognition. This step is strictly an extra analysis step.

    Default value: false

    See Also