VAT  3.0
Video Analysis Tool
setSingleModelBBoxProjection.h
1 #ifndef SETSMBBOXPROJECTION_H
2 #define SETSMBBOXPROJECTION_H
3 
4 #include <QPainter>
5 
6 #include "drawInterface.h"
7 #include "src/RMMT/RMMMobileObject.h"
8 
10 {
11 public:
13 
14 
16 
17  //Set module configuration parameters
18  bool setParameters(QDomNode &config);
19 
20  //Initialization after reading parameters
21  bool init();
22 
23  //Function executed at each frame
24  bool draw(QImage **image);
25 
26  bool paint(QImage *image);
27 
28  void displayShowRMMMobileBBoxProjection(QPainter &painter, SpRMMMobileObject mobileObject);
29 
30  QString model_name;
31 
32 };
33 
34 #endif // SETSMBBOXPROJECTION_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: setSingleModelBBoxProjection.h:9