VAT  3.0
Video Analysis Tool
FilterModule.h
1 #ifndef __FILTERMODULE_H__
2 #define __FILTERMODULE_H__
3 
4 #include "ModuleInterface.h"
5 #include "Datapool.h"
6 #include <opencv2/imgproc/imgproc.hpp>
7 
9 
10 public:
11  FilterModule(Datapool *i_data);
12  ~FilterModule();
13 
14  //Set module configuration parameters
15  bool setParameters(QDomNode& config);
16 
17  //Initialization after reading parameters
18  bool init();
19 
20  //Function executed at each frame
21  bool run();
22 
23  //update parameters at runtime.
24  bool updateParameters();
25 
26 
27 private:
28 
29  int ksize;
30 
31 
32 };
33 #endif // FILTERMODULE_H
Definition: FilterModule.h:8
Definition: ModuleInterface.h:43
An object of this class is instantiated at main code, and this object is used by every class to push ...
Definition: Datapool.h:39