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_WRAPPER_ENUM_CLASSES_HPP
2 #define OPENPOSE_WRAPPER_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
6  enum class PoseMode : unsigned char
7  {
8  Disabled = 0,
9  Enabled,
10  NoNetwork,
11  Size,
12  };
13 
14  enum class Detector : unsigned char
15  {
16  Body = 0,
17  OpenCV,
18  Provided,
20  Size,
21  };
22 
23  enum class WorkerType : unsigned char
24  {
25  Input = 0,
28  Output,
29  Size,
30  };
31 }
32 
33 #endif // OPENPOSE_WRAPPER_ENUM_CLASSES_HPP
Detector
Definition: enumClasses.hpp:15
PoseMode
Definition: enumClasses.hpp:7
WorkerType
Definition: enumClasses.hpp:24