gpt4 book ai didi

c++ - 如何在Qt中将带有YUV数据的 'QVideoFrame'转换为带有RGBA32数据的 'QVideoframe'?

转载 作者:搜寻专家 更新时间:2023-10-31 02:11:46 25 4
gpt4 key购买 nike

我从网络摄像头接收到 QVideoFrames,它们包含 YUV 格式的图像数据 (QVideoFrame::Format_YUV420P)。我如何将一个这样的帧转换为一个具有 QVideoFrame::Format_ARGB32QVideoFrame::Format_RGBA32 的帧?

我能否在不降低级别的情况下仅使用 Qt5 中的现有功能来做到这一点?

例子:

QVideoFrame convertFormat(const QVideoFrame &inputframe, QVideoFrame::PixelFormat outputFormat)
{
// What comes here?
}

//Usage
QVideoFrame converted = convertFormat(mySourceFrame, QVideoFrame::Format_RGB32);

最佳答案

我找到了一个Qt5 内置的解决方案,但Qt 不支持

方法如下:

  1. QT += multimedia-private 放入您的 qmake .pro 文件中
  2. #include "private/qvideoframe_p.h" 放入您的代码中以使该功能可用。
  3. 您现在可以访问具有以下签名的函数:QImage qt_imageFromVideoFrame(const QVideoFrame &frame);
  4. 使用该函数将 QVideoFrame 转换为临时 QImage,然后从该图像创建输出 QVideoFrame

这是我的示例用法:

QVideoFrame convertFormat(const QVideoFrame &inputframe, QVideoFrame::PixelFormat outputFormat)
{
inputframe->map(QAbstractVideoBuffer::ReadOnly);
QImage tempImage=qt_imageFromVideoFrame(inputframe);
inputframe->unmap();
QVideoFrame outputFrame=QVideoFrame(tempImage);
return outputFrame;
}

同样,从 header 复制的警告内容如下:

//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

这在我的项目中无关紧要,因为它是个人玩具产品。如果它变得严重,我将跟踪该功能的实现并将其复制到我的项目或其他东西中。

关于c++ - 如何在Qt中将带有YUV数据的 'QVideoFrame'转换为带有RGBA32数据的 'QVideoframe'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43106069/

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