VAT  3.0
Video Analysis Tool
setObjectHulls.h
1 #ifndef SETOBJECTHULLS_H
2 #define SETOBJECTHULLS_H
3 
4 #include <QPainter>
5 
6 #include "drawInterface.h"
7 
9 {
10 public:
11  setObjectHulls(Datapool *i_data);
12 
13 
14  ~setObjectHulls();
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  void displayShowHull(QPainter &painter, SpHullModel hull);
27  void displayShowAxis(QPainter &painter, SpHullModel hull);
28  void displayShowNormals(QPainter &painter, SpHullModel hull);
29 
30 };
31 
32 #endif // SETOBJECTHULLS_H
Definition: setObjectHulls.h:8
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