OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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
16  };
17 
22  enum class FullScreenMode : bool
23  {
24  FullScreen,
25  Windowed,
26  };
27 }
28 
29 #endif // OPENPOSE_GUI_ENUM_CLASSES_HPP
FullScreenMode
Definition: enumClasses.hpp:22
DisplayMode
Definition: enumClasses.hpp:10