Accord.Imaging.BorderFollowing.CheckPixelFormat C# (CSharp) Method

CheckPixelFormat() private static method

private static CheckPixelFormat ( PixelFormat format ) : void
format PixelFormat
return void
        private static void CheckPixelFormat(PixelFormat format)
        {
            // check pixel format
            if ((format != PixelFormat.Format8bppIndexed))
            {
                throw new UnsupportedImageFormatException("Unsupported pixel format of the source image.");
            }
        }