VAT  3.0
Video Analysis Tool
setHomographyContext.h
1 #ifndef SETHOMOGRAPHYCONTEXT_H
2 #define SETHOMOGRAPHYCONTEXT_H
3 
4 #include "Datapool.h"
5 #include "drawInterface.h"
6 
8 {
9 public:
11 
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: setHomographyContext.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