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_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,
13  MPI_15_4,
14  BODY_18,
15  BODY_19,
16  BODY_19_X2,
17  BODY_23,
18  BODY_59,
19  Size,
20  };
21 
22  enum class PoseProperty : unsigned char
23  {
24  NMSThreshold = 0,
29  Size,
30  };
31 }
32 
33 #endif // OPENPOSE_POSE_ENUM_CLASSES_HPP
PoseModel
Definition: enumClasses.hpp:9
PoseProperty
Definition: enumClasses.hpp:22