blob: 7462f8c21b529a368d0fb73fa9d84f9c4bc6c9a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "facetracknoir.h"
#include <QApplication>
#include <memory>
int main(int argc, char** argv)
{
QApplication::setAttribute(Qt::AA_X11InitThreads, true);
QApplication app(argc, argv);
auto w = std::make_shared<FaceTrackNoIR>();
w->show();
app.exec();
return 0;
}
|