AForge.Imaging.Filters.PointedColorFloodFill.CheckGrayPixel C# (CSharp) Method

CheckGrayPixel() private method

private CheckGrayPixel ( byte pixel ) : bool
pixel byte
return bool
        private unsafe bool CheckGrayPixel( byte pixel )
        {
            return ( pixel >= minG ) && ( pixel <= maxG );
        }