/*
 * STRUCT: SE_YIQ_DATA
 *
 *   Used for YIQ color model's data, which is a recoding of RGB for
 *   transmission efficiency and for downward compatibility with
 *   black-and-white television.
 *
 *   YIQ SUPPORT NOTE:  Support for the YIQ color model is provided as a
 *     convenience, but it is provided in separate functions, the
 *     SE_RGBtoYIQ() and SE_YIQtoRGB() functions. Thus, the SE_YIQ_DATA
 *     structure is not included in the general SE_COLOR_DATA structure.
 */
typedef struct
{
SE_FLOAT64 y; (notes)
SE_FLOAT64 i;
SE_FLOAT64 q;
} SE_YIQ_DATA;


Field Notes

y

 luminance, not yellow
Prev: SE_VERTICAL_DATUM_ENUM. Up:Index