Conversion.YCbCrToRGB
Static Method in Conversion
Declaration
public static Color YCbCrToRGB(float Y, float Cb, float Cr, SignalEncoding encoding = SignalEncoding.Rec709)
Description
Converts Y′CbCr components to an RGB color.
Parameters
Y | The luma component of the color in the full range [0..255]. |
Cb | The blue-difference chroma component of the color in the full range [0..255]. |
Cr | The red-difference chroma component of the color in the full range [0..255]. |
encoding | The encoding to use (default=Rec709). |
Returns
Color | The converted RGB color. |