gpt4 book ai didi

image-processing - 使用 libswscale 缩放 YUV420P - 输出灰色图像

转载 作者:行者123 更新时间:2023-12-04 22:51:10 24 4
gpt4 key购买 nike

我对YUV420p数据的格式有了基本的了解。我知道它在平面上,并且 Y 数据基本上是黑白亮度,长度应该是宽度*高度像素。

我认为每个平面的 U 和 V 平面的尺寸为宽度*高度/4。

因此,有了所有这些知识,我正在尝试使用 libswscale 缩放 yuv420p 图像。输出图像是灰色的,就像我缺少 U 和 V 平面一样。

这就是我正在做的事情:

  int src_stride[3] = {0, 0, 0};
src_stride[0] = mInputWidth;
src_stride[1] = mInputWidth / 4;
src_stride[2] = mInputWidth / 4;


const uint8_t *input_planes[3];
input_planes[0] = input.GetData(); // returns pointer to image data
input_planes[1] = input_planes[0] + (mInputWidth * mInputHeight);
input_planes[2] = input_planes[0] + (mInputWidth * mInputHeight) + (mInputWidth * mInputHeight / 4);


int scale_rc = sws_scale(mSwsEncodeContext, input_planes,
src_stride, 0, mInputHeight, mEncodeAvFrame->data,
mEncodeAvFrame->linesize);

知道我是在搞砸 src_stride 还是 input_planes?

最佳答案

上面的代码对于缩放 YUV420P 数据是正确的。原来我的数据不是 YUV420P 而是 NV21,它具有相同的大小,但 U 和 V 数据不在不同的平面上,它们在 1 个平面上并且是交错的。

关于image-processing - 使用 libswscale 缩放 YUV420P - 输出灰色图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16286778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com