VAT  3.0
Video Analysis Tool
set2DContext.h
1 #ifndef SET2DCONTEXT_H
2 #define SET2DCONTEXT_H
3 
4 #include "Datapool.h"
5 #include "drawInterface.h"
6 
8 {
9 public:
10  set2DContext(Datapool *i_data);
11 
12  ~set2DContext();
13 
14  //Set module configuration parameters
15  bool setParameters(QDomNode &config);
16 
17  //Initialization after reading parameters
18  bool init();
19 
20  //Function executed at each frame
21  bool draw(QImage **image);
22 
23  bool paint(QImage *image);
24 
25 
26 };
27 
28 #endif // SETHOMOGRAPHYCONTEXT_H
Definition: set2DContext.h:7
Definition: drawInterface.h:23
An object of this class is instantiated at main code, and this object is used by every class to push ...
Definition: Datapool.h:39