mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-22 06:39:59 +01:00
14 lines
237 B
C++
14 lines
237 B
C++
#include"qtheaders.h"
|
|
#include "main_window.h"
|
|
|
|
bool blend_set = false;
|
|
cv::Mat blend_image;
|
|
|
|
int main(int argc, char **argv) {
|
|
QApplication app(argc, argv);
|
|
AC_MainWindow window;
|
|
window.show();
|
|
return app.exec();
|
|
|
|
}
|