-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
29 lines (22 loc) · 1.01 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include "captureCameraVideo.h"
#include "imageProviderOpenCV.h"
int main(int argc, char *argv[])
{
capture* video = new capture("0");
imageProvider* VideoProvider(new imageProvider);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
// setContextProperty is used to connect the object to qml | Note that the methods should be slot to be accesible from qml
engine.rootContext()->setContextProperty("streamer", video);
engine.rootContext()->setContextProperty("imageprovider", VideoProvider);
// Image provider is linked to qml via addImageProvider
engine.addImageProvider("imProvider", VideoProvider);
const QUrl url(QStringLiteral("qrc:/main.qml"));
engine.load(url);
// Connect the frame update signal to updateFrame of image provider to invoke the method
QObject::connect(video, &capture::frameChange, VideoProvider, &imageProvider::updateFrame);
return app.exec();
}