Teademia 916b2ab3f0 A.2
In this commit I compile 6.52 version into 5.90
And I was able to  extract any object in the JSON provided by www.baidu.com Server
In next Version. I will add an camera to read Image and deliver it to Server.
2023-09-28 14:18:53 +08:00

12 lines
172 B
C++

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}