AForge.Imaging.ColorReduction.MedianCutQuantizer.AddColor C# (CSharp) Метод

AddColor() публичный Метод

Add color to the list of processed colors.

The method adds the specified color into internal list of processed colors. The list is used later by GetPalette method to build reduced color table of the specified size.

public AddColor ( Color color ) : void
color Color Color to add to the internal list.
Результат void
        public void AddColor( Color color )
        {
            colors.Add( color );
        }