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
}
}
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
}
}
To copy to clipboard, switch view to plain text mode
The source of the videoOutput come from camera
then process by the GammaAdjust
How could I get the image after process?
Any workaround?
Bookmarks