Skip to content

Instantly share code, notes, and snippets.

@gwaldvogel
Created July 31, 2017 15:53
Show Gist options
  • Save gwaldvogel/b56aa0b11246b38ba19aa66270311d9a to your computer and use it in GitHub Desktop.
Save gwaldvogel/b56aa0b11246b38ba19aa66270311d9a to your computer and use it in GitHub Desktop.
import QtQuick 2.6
import QtQuick.Window 2.2
import QtMultimedia 5.7
Window {
id: window
visible: true
title: "Raspberry Pi Photobooth"
minimumWidth: 720
minimumHeight: 480
color: 'black'
Camera {
id: camera
}
VideoOutput {
source: camera
anchors.fill: parent
focus: visible
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment