YUV file format

十年热恋 提交于 2020-04-10 05:12:09

问题


Does anybody know YUV:4:2:0 file format? I mean how a video is stored in a file with this format (in detail).


回答1:


YUV 4:2:0 isn't a file format its a video data format specifying the ratio between the Y, the U and the V components per pixel. You would typically store such data in a container format such as AVI or MOV.

Have a look at Wikipedia for a description of YUV. A file of YUV will just be a sequential collection of YUV frames.




回答2:


Here you can find scripts for manipulating YCbCr (also known as 'YUV') sequences.

http://www.sprljan.com/nikola/matlab.html

Take a look at yuv_export.m and yuv_import.m to see how these files are stored.




回答3:


YUV is a file extension for a raster graphics file often associated with the Color Space Pixel Format. YUV files contain bitmap image data stored in the YUV format, which splits color across Y, U, and V values. It stores the brightness (luminance) as the Y value, and the color (chrominance) as U and V values. YUV files can be opened and converted using xnView.



来源:https://stackoverflow.com/questions/5194285/yuv-file-format

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!