OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
enumClasses.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_GUI_ENUM_CLASSES_HPP
2 #define OPENPOSE_GUI_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
10  enum class DisplayMode : unsigned short
11  {
12  NoDisplay,
13  DisplayAll,
14  Display2D,
15  Display3D,
17  };
18 
23  enum class FullScreenMode : bool
24  {
25  FullScreen,
26  Windowed,
27  };
28 }
29 
30 #endif // OPENPOSE_GUI_ENUM_CLASSES_HPP
FullScreenMode
Definition: enumClasses.hpp:24
DisplayMode
Definition: enumClasses.hpp:11