从 C++ 中的 AVFrame (FFMPEG) 中提取 RGB 值

发布于 2024-07-25 22:57:07 字数 184 浏览 2 评论 0原文

我目前正在尝试使用 FFMPEG 读取视频帧。 格式为PIX_FMT_RGB24; 对于每个帧,RGB值都在frame->data[0]中组合在一起(其中帧是AVFrame类型)。

如何提取每帧的单独 R、G 和 B 值? 这是为了处理视频。 我认为它的工作方式与从位图中提取 RGB 值的方式相同。 谢谢!

I am currently trying to read in video frames by using FFMPEG. The format is PIX_FMT_RGB24; For each frame, the RGB values are all combined together in frame->data[0] (Where frame is of the type AVFrame).

How do I extract the individual R, G and B values for each frame? This is for processing the video. I would think it would work the same way as extracting the RGB values from a bitmap too. Thanks!

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

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

发布评论

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

评论(1

相权↑美人 2024-08-01 22:57:07

我的猜测:

int p=x*3+y*frame->linesize[0];
r=frame->data[0][p];
g=frame->data[0][p+1];
b=frame->data[0][p+2];

我可能把 r、g 和 b 倒过来。 而且还有很大的加速空间。

My guess:

int p=x*3+y*frame->linesize[0];
r=frame->data[0][p];
g=frame->data[0][p+1];
b=frame->data[0][p+2];

I might have r, g, and b backwards. And there's a lot of room for speedup.

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