VAT  3.0
Video Analysis Tool
setHistoStat.h
1 #ifndef SETHISTOSTAT_H
2 #define SETHISTOSTAT_H
3 
4 #include "Datapool.h"
5 #include "drawInterface.h"
6 #include "QPoint"
7 
8 
10 {
11 public:
12  setHistoStat(Datapool *i_data);
13 
14  ~setHistoStat();
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  int Hues[36];
26 
27  QPoint *loc;
28 
29  float ratio;
30  float colorAccuracyRatio;
31 
32 
33  void displayShowHull(QPainter &painter, SpHullModel hull);
34  void displayShowAxis(QPainter &painter, SpHullModel hull);
35  void displayShowNormals(QPainter &painter, SpHullModel hull);
36  void displayBackBone(QPainter &painter, SpHullModel hull);
37 
38 };
39 
40 
41 #endif // SETHISTOSTAT_H
Definition: setHistoStat.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