VAT  3.0
Video Analysis Tool
PlanarStatisticsModule.h
1 #ifndef PLANARSTATISTICSMODULE_H
2 #define PLANARSTATISTICSMODULE_H
3 
4 #include <map>
5 #include <string>
6 #include <QImage>
7 #include "Datapool.h"
8 #include "ModuleInterface.h"
9 #include "src/planarstatistics.h"
10 
12 public:
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 run();
24 
25  //update parameters at runtime.
26  bool updateParameters();
27 
28  private:
29  //Internal data:
31 };
32 
33 #endif // PlanarStatisticsModule_H
Definition: ModuleInterface.h:43
Definition: planarstatistics.h:7
Definition: PlanarStatisticsModule.h:11
An object of this class is instantiated at main code, and this object is used by every class to push ...
Definition: Datapool.h:39