VAT  3.0
Video Analysis Tool
ConnectedComponentsRLEModule.h
1 #ifndef CONNECTEDCOMPONENTSRLE_H
2 #define CONNECTEDCOMPONENTSRLE_H
3 
4 #include <map>
5 #include <string>
6 #include <QImage>
7 #include "Datapool.h"
8 #include "ModuleInterface.h"
9 #include "src/rlesegment.h"
10 #include <QDir>
11 
13 public:
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 run();
25 
26  //update parameters at runtime.
27  bool updateParameters();
28 
29  private:
30  int step;
31  int tolerance;
32  void setLabel(QImage *);
33 };
34 
35 #endif // CONNECTEDCOMPONENTSRLE_H
Definition: ModuleInterface.h:43
Definition: ConnectedComponentsRLEModule.h:12
An object of this class is instantiated at main code, and this object is used by every class to push ...
Definition: Datapool.h:39