Conversion.YIQToRGB
Static Method in Conversion
Declaration
public static Color YIQToRGB(float Y, float I, float Q, SignalEncoding encoding = SignalEncoding.Rec709)
Description
Converts Y′IQ components to an RGB color.
Parameters
Y | The luma component of the color in the range [0..1]. |
I | The orange-blue chroma component of the color in the range [-0.596..0.596]. |
Q | The purple-green chroma component of the color in the range [-0.523..0.523]. |
encoding | The encoding to use (default=Rec709). |
Returns
Color | The converted RGB color. |