ConnectedComponentLabeling.CCL.CheckIsBackGround C# (CSharp) Method

CheckIsBackGround() protected method

protected CheckIsBackGround ( Pixel currentPixel ) : bool
currentPixel Pixel
return bool
        protected virtual bool CheckIsBackGround(Pixel currentPixel)
        {
            return currentPixel.color.A == 255 && currentPixel.color.R == 255 && currentPixel.color.G == 255 && currentPixel.color.B == 255;
        }