Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Display image in multithreaded QGLWidget

Display image in multithreaded QGLWidget

Scheduled Pinned Locked Moved General and Desktop
5 Posts 2 Posters 5.2k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    sampats
    wrote on last edited by
    #1

    Hi All,
    I want to display a QImage created in a different thread to be displayed in a QGLWidget which is created in the main GUI thread. My code structure looks like this. I am completely new to OpenGL. Going by the example "2D Painting Example" in Qt I try to display the image in the paintEvent() like this.

    @void FvaInfraVideoDisplayPanel::paintEvent(QPaintEvent * event)
    {
    QPainter p;
    p.begin(this);
    p.setRenderHint(QPainter::Antialiasing, 1);
    //if ( !m_paintLock ) {
    if ( m_newImageReady )
    m_currentImage = *m_newImage;
    p.drawImage(this->rect(), m_currentImage);
    //}
    p.end();
    }@

    and in the thread I prepare the image like this.

    @void FvaInfraVideoDisplayPanel::presentFrame()
    {
    FvaVFrame * frame = m_videoClip->popFrameFromDisplayQueue();

    m_paintLock = true;
    if ( m_newImage )
        delete m_newImage;
    
    m_newImage = new QImage(frame->getRawFrame()->data[0],
            m_videoClip->width(), m_videoClip->height(),
            QImage::Format_RGB888);
    
    delete frame;
    // trigger a paint event
    repaint();
    m_newImageReady = true;
    m_paintLock = false;
    

    }@

    Some boolean vars of course might not make sense but they are there since I tried several options.
    The issue here is that I get several lines of errors in the terminal (Linux) which are shown below and no frames are displayed at all.
    @
    X Error: BadAccess (attempt to access private resource denied) 10
    Extension: 153 (Uknown extension)
    Minor opcode: 26 (Unknown request)
    Resource id: 0x5800009
    QGLContext::makeCurrent(): Failed.
    X Error: BadAccess (attempt to access private resource denied) 10
    Extension: 153 (Uknown extension)
    Minor opcode: 26 (Unknown request)
    Resource id: 0x5800009
    QGLContext::makeCurrent(): Failed.
    X Error: BadAccess (attempt to access private resource denied) 10
    Extension: 153 (Uknown extension)
    Minor opcode: 26 (Unknown request)
    Resource id: 0x5800009
    QGLContext::makeCurrent(): Failed.
    QObject: Cannot create children for a parent that is in a different thread.
    (Parent is QGLEngineSharedShaders(0x29d18e0), parent's thread is QThread(0x247f9a0), current thread is QThread(0x2bfca30)
    QGLShader: could not create shader
    Warning: "" failed to compile! @

    These lines are repeated several times and then the app aborts.

    If I use update() instead of repaint() the frames are displayed, of course sometimes with lot of flicker due to lack of timely refreshes.
    I know that using QGLWidget is tricky in a multithreaded environment but I don't really know which is the correct method to do this. I have seen examples of rendering other geometric shapes in a multithreaded examples but I don't have a knowledge in OGL to understand this. Therefore I would like to get an idea on the direction I should go since I don't want to dig deep in to openGL programming at this moment. I have tried to use SDL to show video, but I gave up since embedding video on a Qt widget is not easy (SDL_WINDOWID doesn't work).

    Images should come from a different thread since I want to do lot of processing on them. I would really appreciate if somebody could advise on the exact steps I should follow on this.

    thanks and regards.

    1 Reply Last reply
    0
    • Z Offline
      Z Offline
      ZapB
      wrote on last edited by
      #2

      First of all can you provide some more info about what sort of processing you need to do on the images please? Where do the images originate? Disk? Calculated? How often do they change or does the processing change?

      Nokia Certified Qt Specialist
      Interested in hearing about Qt related work

      1 Reply Last reply
      0
      • S Offline
        S Offline
        sampats
        wrote on last edited by
        #3

        Hi ZapB,
        thanks for the reply. My application is for video enhancement. The video files are decoded and converted into RGB format frames using the FFMpeg's libavcodec etc. libraries. So the final frame is available as an AVFrame struct (FFMpeg). I intend to perform from simple brightness/contrast adjustments to more complex super-resolution reconstructions on the video. I hope this clarifies my purpose.

        1 Reply Last reply
        0
        • Z Offline
          Z Offline
          ZapB
          wrote on last edited by
          #4

          I don't have any experience with realtime video processing with OpenGL. However, VLC has an OpenGL output mode and also offers lots of nice video effects so it might be worth having a dig through the VLC source code to see how they do it or contacting the authors.

          I would imagine that the sequence is something like:

          • Grab frame from decoder
          • Bind it to an OpenGL texture
          • Set a suitable vertex and fragment shader
          • Render texture to a quad (well pair of triangles) with suitable texture coordinates

          For video the fragment shader will do most of the work ie increase gamma, invert colours, whatever. For those types of filters all you will need is a single quad in terms of geometry.

          For more complex filters, like the puzzle filter or wave effect in vlc, I would imagine that you would need several quads in order to be able to jumble the pieces up (puzzle) or to displace the vertices (wave).

          HTH

          Nokia Certified Qt Specialist
          Interested in hearing about Qt related work

          1 Reply Last reply
          0
          • S Offline
            S Offline
            sampats
            wrote on last edited by
            #5

            Hi ZapB,
            Yes, I had a glance at VLC code earlier but didn't try digging deep. Seems like no other option available but to do so. Thanks for the suggestions.

            sampats

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved