VAT  3.0
Video Analysis Tool
setNewImage2.h
1 #ifndef SETNEWIMAGE2_H
2 #define SETNEWIMAGE2_H
3 
4 
5 #include "Datapool.h"
6 #include "drawInterface.h"
7 
8 
10 {
11 public:
12  setNewImage2(Datapool *i_data);
13 
14  ~setNewImage2();
15 
16  //Set module configuration parameters
17  bool setParameters(QDomNode &config);
18 
19  //Initialization after reading parameters
20  bool init();
21 
22  //Function executed at each frame
23  bool draw(QImage **image);
24 
25  bool paint(QImage *image);
26 };
27 
28 #endif // SETNEWIMAGE2_H
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
Definition: setNewImage2.h:9