MTF
GridBase.h
1 #ifndef MTF_GRID_BASE_H
2 #define MTF_GRID_BASE_H
3 
4 #include "CompositeBase.h"
5 
6 _MTF_BEGIN_NAMESPACE
7 
8 class GridBase : public CompositeBase{
9 public:
10  GridBase(const vector<TrackerBase*> _trackers) :
11  CompositeBase(_trackers), pix_mask_needed(false){}
12  GridBase(){}
13  virtual void initPixMask(){ pix_mask_needed = true; }
14  virtual const uchar* getPixMask() = 0;
15  virtual int getResX() = 0;
16  virtual int getResY() = 0;
17 protected:
18  bool pix_mask_needed;
19 };
20 
21 _MTF_END_NAMESPACE
22 
23 #endif
24 
Definition: CompositeBase.h:10
Definition: GridBase.h:8