Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. How to get the image buffer of videoOutput?
Forum Updated to NodeBB v4.3 + New Features

How to get the image buffer of videoOutput?

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 640 Views 1 Watching
  • 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
    stereomatching
    wrote on last edited by
    #1

    @
    Rectangle {
    width: 320
    height: 240

    Camera{
        id: camera
    }
    
    VideoOutput {
        id: videoOutput
    
        anchors.fill: parent
        source: camera
    }    
    
    GammaAdjust {
        id: gammaAdjust
    
        anchors.fill: videoOutput
        source: videoOutput
        gamma: 0.5
    }
    

    }
    @

    The source of the videoOutput come from camera
    then process by the GammaAdjust
    How could I get the image after process?
    Any workaround?

    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