OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
enumClasses.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_POSE_ENUM_CLASSES_HPP
2 #define OPENPOSE_POSE_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
9  enum class PoseModel : unsigned char
10  {
11  COCO_18 = 0,
12  MPI_15 = 1,
13  MPI_15_4 = 2,
14  BODY_18 = 3,
15  BODY_19 = 4,
16  BODY_23 = 5,
17  BODY_59 = 6,
18  Size,
19  };
20 
21  enum class PoseProperty : unsigned char
22  {
23  NMSThreshold = 0,
28  Size,
29  };
30 }
31 
32 #endif // OPENPOSE_POSE_ENUM_CLASSES_HPP
PoseModel
Definition: enumClasses.hpp:9
PoseProperty
Definition: enumClasses.hpp:21