RLL Computer Vision Code: code/main.cpp 源文件

RLL Computer Vision

RLL Computer Vision Code  1.0
江苏科技大学HLL战队机器视觉代码
main.cpp
浏览该文件的文档.
1 #ifdef DEBUG
2  /*Qt库*/
3  #include "mainwindow.h"
4  #include <QApplication>
5 #else
6  /*主控制库*/
7  #include "main_control.h"
8 #endif
9 
10 int main(int argc, char *argv[])
11 {
12 
13 #ifdef DEBUG
14  QApplication a(argc, argv);
15  MainWindow instance;
16  instance.show();
17 #else
18  HCVC::MainControl instance;
19 #endif
20 
21  try
22  {
23  instance.run("F:\\OpencvSources\\testVideo\\redcar3.MOV");
24  }
25  catch(const string& hint)
26  {
27  cout << hint << endl;
28  }
29  catch(const Exception& exception)
30  {
31  cout << exception.what() << endl;
32  }
33 
34 #ifdef DEBUG
35  instance.close();
36 
37  return a.exec();
38 #else
39  return 0;
40 #endif
41 }
系统总体逻辑控制
Definition: main_control.h:53
void run(const string &path)
运行整体系统并显示运行结果
int main(int argc, char *argv[])
Definition: main.cpp:10
制作者   doxygen 1.8.13