Changes between Version 19 and Version 20 of colorspace


Ignore:
Timestamp:
May 2, 2024, 10:00:11 PM (2 years ago)
Author:
MasterQuestionable
Comment:

There's no practical difference between YUV and YCbCr: sort of more like "RGB" and "BGR".

Legend:

Unmodified
Added
Removed
Modified
  • colorspace

    v19 v20  
    99- RGB distinguishes color pixel values into 3 components: Red, Green, Blue. (hence the name)
    1010- YUV uses a different representation schema that represents color pixel values in: Luma (Y, or brightness), Chroma (U and V, two color differences). This format exploits the fact that humans are able to better notice details in luminance (approximated by luma) than in chroma. ^(Note: YUV represents color in 3 components)^
    11 {{{
    12 #!div style="border: 1px solid #e5e5c7; margin: 1em; background-color: #ffd;"
    13 '''Note:''' The term "YUV" is ambiguous and often used wrongly, including the definition of pixel formats in FFmpeg. A more accurate term for how color is stored in digital video would be [https://en.wikipedia.org/wiki/YCbCr YCbCr]. Y'UV on other other hand specifies a colorspace consisting of luma (Y') and chrominance (UV) components. For more info read [https://en.wikipedia.org/wiki/YUV the respective Wikipedia article]. In the following, the term YUV is used as in the FFmpeg pixel formats, referring to YCbCr in digital video.
     11
     12{{{#!div style="margin-left: 1em; border: 1px solid #e5e5c7; background-color: #FFD"
     13'''Note:'''\\
     14͏    The term "YUV" is ambiguous and often used wrongly [1], including the definition of pixel formats in FFmpeg.\\
     15͏    A more accurate term for how colors stored in digital video would be [https://en.wikipedia.org/wiki/YCbCr YCbCr].\\
     16͏    Y'UV on the other hand specifies a colorspace consisting of luma (Y') and chrominance (UV) components.\\
     17͏    For more info read Wikipedia [https://en.wikipedia.org/wiki/YUV <YUV>].\\
     18[ [1]\\
     19͏    There's no practical difference between YUV and YCbCr: sort of more like "RGB" and "BGR".\\
     20͏    "UV" doesn't explicitly state the exact type of color difference neither. (so it might be "!CbCr") ]
     21
     22͏    In following, the term YUV is used as in the FFmpeg pixel formats: referring to YCbCr in digital video.
    1423}}}
    1524