Accord.Imaging.HSL.ToRGB C# (CSharp) Method

ToRGB() public method

Convert the color to RGB color space.
public ToRGB ( ) : RGB
return RGB
        public RGB ToRGB()
        {
            RGB rgb = new RGB();
            ToRGB(this, rgb);
            return rgb;
        }

Same methods

HSL::ToRGB ( HSL hsl, RGB rgb ) : void