CanvasCV: CanvasCV-doxygen/src/canvascv/consts.h Source File
CanvasCV  1.0.0
consts.h
1 #ifndef CONSTS_H
2 #define CONSTS_H
3 
4 #include <opencv2/opencv.hpp>
5 
6 namespace canvascv
7 {
8 
14 class Consts
15 {
16 public:
17  static const int DEFAULT_ALPHA;
18  static const int DEFAULT_THICKNESS;
19  static const cv::Scalar DEFAULT_FG_COLOR;
20  static const cv::Scalar DEFAULT_BG_COLOR;
21  static const cv::Scalar DEFAULT_SELECT_COLOR;
22  static const int DEFAULT_FONT;
23  static const double DEFAULT_FONT_SCALE;
24  static const cv::Scalar DEFAULT_FONT_COLOR;
25  static const int DEFAULT_FONT_THICKNESS;
26  static const int DEFAULT_LAYOUT_SPACING;
27  static const int DEFAULT_LAYOUT_PADDING;
28 };
29 
30 }
31 
32 #endif // CONSTS_H
The Consts class.
Definition: consts.h:14
This namespace holds all the classes of the CanvasCV library.
Definition: canvas.h:20