Type alias YUV

YUV: {
    u: number;
    v: number;
    y: number;
}

Represents a color in the YUV color space. 'y' is between 0 and 1. 'u' and 'v' are typically between -0.5 and 0.5.