VAT  3.0
Video Analysis Tool
setBlobs.h
1 #ifndef SETBLOBS_H
2 #define SETBLOBS_H
3 
4 #include "Datapool.h"
5 #include "drawInterface.h"
6 #include "src/blob.h"
7 
8 
9 class setBlobs: public drawInterface
10 {
11 public:
12  setBlobs(Datapool *i_data);
13 
14  ~setBlobs();
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 // SETBLOBS_H
Definition: setBlobs.h:9
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