VAT  3.0
Video Analysis Tool
playthread.h
1 #ifndef TEXTTHREAD_H
2 #define TEXTTHREAD_H
3 #include <QTextEdit>
4 #include "productionthread.h"
5 
6 class playThread : public QThread {
7  Q_OBJECT
8 
9  public:
10  //textThread(QTextEdit *aQObject *parent=0);
11  playThread(VideoAnalysis *i_va, char *config_file, QObject *parent = 0);
12  void run();
13  void unlock_pauseCondition();
14 
15  VideoAnalysis *m_videoAnalysis;
16  ProductionThread *producer;
17 
18  signals:
19  void load_data();
20  void bad_init();
21 
22  private slots:
23  void start_production();
24  void continue_production();
25  void pause_production();
26  void finish_production();
27  void send_load_data();
28  void send_bad_init();
29  void send_init_next();
30  void send_make_next();
31 };
32 #endif
Definition: playthread.h:6
The VideoAnalysis class is in charge to manage each module to actual video processing.
Definition: VideoAnalysis.h:27
The ProductionThread class is a Thread in carge of coordinate frame navigation and kick video analysi...
Definition: productionthread.h:13