Accord.Imaging.YCbCr.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

YCbCr::ToRGB ( YCbCr ycbcr, RGB rgb ) : void