Newer
Older
CasicIrisIdentify / main.cpp
tanyue on 16 Dec 2023 191 bytes 20231216 debug on ubuntu arm
#include "MainWindowForm.h"

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindowForm w;
    w.show();
    return a.exec();
}