将 YUV 转换为 RGBA 的最快近似方法?

发布于 2024-10-27 01:12:33 字数 759 浏览 1 评论 0原文

我正在寻找一种最快的方法将一个 YUV 数组转换为 RGBA 数组。例如,给定一个 YCbYCr 数组,它是一个字节序列:

YCbYCr = Luma0, Cb0, Luma1, Cr0, Luma2, ...

其中 8 位蓝色和 8 位红色差色度分量以周期 2 采样,但 8 位亮度以周期 1 采样。例如:

  1. 图像像素(0,0)有luma0,Cr0红差色度,Cb0蓝差色度
  2. 图像像素(0,1)有luma1,Cr0红差色度,Cb0蓝差色度
  3. 图像像素(0,2)有luma2、Cr1 红差色度、Cb1 蓝差色度
  4. 图像像素 (0,3) 具有 luma3、Cr1 红差色度、Cb1 蓝差色度
  5. 等。

应生成 RGBA 数组,其中

RGBA = R0, G0, B0, A0, R1, G1, ...

所有元素均为无符号字符每个A#的所有位都为零。

YCbYCr 中的亮度分量是 0..255 个无符号字符,Cb 和 Cr 是 -127..+126 个有符号字符。有一种标准方法——矩阵乘法,但对于实时应用程序来说它非常慢并且它使用浮点数进行操作。我正在寻找一种快速近似数值方法。

I am looking for a fastest method to convert one YUV array into RGBA array. For example, given a YCbYCr array, which is a sequence of bytes:

YCbYCr = Luma0, Cb0, Luma1, Cr0, Luma2, ...

where 8-bit blue- and 8-bit red- difference chroma components are sampled with period 2, but 8-bit luma is sampled with period 1. For example:

  1. image pixel (0,0) has luma0, Cr0 red-difference chroma, Cb0 blue-difference chroma
  2. image pixel (0,1) has luma1, Cr0 red-difference chroma, Cb0 blue-difference chroma
  3. image pixel (0,2) has luma2, Cr1 red-difference chroma, Cb1 blue-difference chroma
  4. image pixel (0,3) has luma3, Cr1 red-difference chroma, Cb1 blue-difference chroma
  5. etc.

RGBA array should be produced which is:

RGBA = R0, G0, B0, A0, R1, G1, ...

where all elements are unsigned chars and all bits of each A# are zero.

Luma component in YCbYCr is 0..255 unsigned char, Cb and Cr are -127..+126 signed chars. There is a standard approach --- matrix multiplication, but it's very slow for real time apps and it operates with floating point numbers. I am looking for a fast approximate numerical method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里°也失望 2024-11-03 01:12:33

您可能获得的最大的单一计算节省就是通过以定点而不是浮点进行计算。它可能会快一个数量级(猜测)。

您还可以利用子采样色度贡献中的冗余。假设全矩阵乘法的形式为:

R     a b c   Y
G  =  d e f . Cb
B     g h i   Cr

您可以经常计算色度部分和的一半:

R'    b c   
G' =  e f . Cb
B'    h i   Cr

然后简单地将其添加到全输出速率的亮度贡献中:

R     R'     a
G  =  G'  +  d . Y
B     B'     g

The biggest single computational saving you're likely to get is simply by doing the computation in fixed-point rather than floating-point. It's likely to be an order of magnitude faster (at a guess).

You can also take advantage of the redundancy in the subsampled chroma contributions. Given that the full matrix multiply is of the form:

R     a b c   Y
G  =  d e f . Cb
B     g h i   Cr

You can compute the chroma partial sum half as often:

R'    b c   
G' =  e f . Cb
B'    h i   Cr

and then simply add it to the luma contribution at the full output rate:

R     R'     a
G  =  G'  +  d . Y
B     B'     g
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文