Initial Qt OpenCV image tool

This commit is contained in:
luochen570
2026-05-31 12:10:10 +08:00
commit c658fa4265
6 changed files with 588 additions and 0 deletions

14
main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MainWindow window;
window.resize(1180, 760);
window.show();
return app.exec();
}