MTF
PyramidalParams.h
1 #ifndef MTF_PYRAMIDAL_PARAMS_H
2 #define MTF_PYRAMIDAL_PARAMS_H
3 
4 #include "mtf/Macros/common.h"
5 
6 #define PYRL_NO_OF_LEVELS 3
7 #define PYRL_SCALE_FACTOR 0
8 #define PYRL_AUTO_REINIT 0
9 #define PYRL_REINIT_ERR_THRESH 1
10 #define PYRL_SM_REINIT_FRAME_GAP 1
11 
12 _MTF_BEGIN_NAMESPACE
13 
15  int no_of_levels;
16  double scale_factor;
17  bool show_levels;
18  PyramidalParams(int no_of_levels, double scale_factor,
19  bool show_levels);
20  PyramidalParams(const PyramidalParams *params = nullptr);
21 };
22 
23 _MTF_END_NAMESPACE
24 
25 #endif
26 
Definition: PyramidalParams.h:14