예제 #1
0
        private static ColorQuantizerResult ParseImage(byte[] image)
        {
            const int colorCout      = 16;
            var       quantizedImage = quantizer.Quantize(image, colorCout);

            return(quantizedImage);
        }