x,y,z 到矢量偏移

发布于 2024-10-21 19:53:12 字数 288 浏览 1 评论 0原文

我知道这可能听起来很愚蠢,但我对此感到疯狂 XD

我正在将广告图像(使用 ImageMagick)加载到 1D 矢量中,这样我就有了类似的内容:

012345678...
RGBRGBRGB...

Where 0-.显然是向量的索引,R、G、B分别是红色字节、绿色字节、蓝色字节。 所以我有一个 WIDTHxHEIGHTx3 字节向量。

现在,假设我想访问 x,y,z 字节,其中 z 是颜色的索引,这是对向量进行线性偏移的变换公式?

I know this may sound stupid but I'm goin crazy with this XD

I'm loading ad image (with ImageMagick) into a 1D vector, so that I have something like:

012345678...
RGBRGBRGB...

Where 0-. Are obviously the indexes of the vector, and R, G, and B are respectively the red byte, green byte, and blue byte.
So I have a WIDTHxHEIGHTx3 bytes vector.

Now, let's say I want to access the x,y,z byte, where z is the index of the color, which is the transformation formula to have a linear offset into the vector?

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

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

发布评论

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

评论(2

花期渐远 2024-10-28 19:53:12

此表达式生成像素 (x,y) 处颜色分量 z 的索引:

((y * WIDTH) + x) * 3 + z

假设是:

  • 数据按行优先顺序放置。
  • 行之间不使用填充/对齐字节。

This expression produces an index to color component z at pixel (x,y):

((y * WIDTH) + x) * 3 + z

Assumptions are:

  • Data is placed in row-major order.
  • No padding/alignment bytes are used between rows.
梨涡少年 2024-10-28 19:53:12

假设您的数据存储为一系列行(这不是一个疯狂的假设),您可以在 y*WIDTH*3 + 3*x + z 处找到字节 x,y,z

Assuming your data is stored as a series of rows (not a crazy assumption), you can find byte x,y,z at y*WIDTH*3 + 3*x + z

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