【发布时间】:2016-11-16 09:26:32
【问题描述】:
我想从相机计算 2592x1944 YUV422 一帧图像大小。 我已经看到了https://en.wikipedia.org/wiki/YUV
但我不确定下面的计算是否正确。 和
YUV444 3 bytes per pixel (12 bytes per 4 pixels)
YUV422 4 bytes per 2 pixels ( 8 bytes per 4 pixels)
YUV411 6 bytes per 4 pixels
YUV420p 6 bytes per 4 pixels, reordered
具有hsync长度的含义。
据我所知,2592x1944 YUV422 一帧图像大小可以这样计算
一帧中的总像素数 = 2592*1944 = 5038848 像素
一帧中的总字节数 = 5038848 *2=10077696 字节
这是否意味着 1 hsync real size(length)@ YUV422 是 2592*2 并且可以被 YUV444、YUV422、YUV411、YUV420 改变?
【问题讨论】:
标签: image-processing