高性能QImage输出显示

时间:2012-06-25 17:51:52

标签: c++ qt qimage qpixmap

我正在尝试将视频输出(帧序列)发送到任何qt可见小部件。一开始我认为QLabel就足够了......但我错了。转换为pixmap对于大型图像处理器来说过载:例如1080p。

还有其他解决方案吗? (不是QLabel?)

一帧代码示例:

QImage m_outputFrameImage(width, height, QImage::Format_RGB888);
memcpy(m_outputFrameImage.bits(), m_frameRGB->data[0], height * width * 3);
QPixmap pixmap = QPixmap::fromImage(m_outputFrameImage); // BAD, slow and high load
/* Bad too (Same code?)
    QPainter painter;
    painter.begin(&pixmap);
    painter.drawImage(0, 0, m_outputFrameImage);
    painter.end();
*/
labelVideo->setPixmap(pixmap);

1 个答案:

答案 0 :(得分:4)

是的,将帧渲染为QGLWidget 并让视频卡处理它。这就是Qt MultimediaKit,Phonon和其他人的做法。

前段时间我分享了一些演示如何完成此任务的代码:Image scaling (KeepAspectRatioByExpanding) through OpenGL