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_FILESTREAM_ENUM_CLASSES_HPP
2 #define OPENPOSE_FILESTREAM_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
6  enum class DataFormat : unsigned char
7  {
8  Json,
9  Xml,
10  Yaml,
11  Yml,
12  };
13 
14  enum class CocoJsonFormat : unsigned char
15  {
16  Body,
17  Hand21,
18  Hand42,
19  Face,
20  Foot,
21  Car,
22  Size,
23  };
24 }
25 
26 #endif // OPENPOSE_FILESTREAM_ENUM_CLASSES_HPP
CocoJsonFormat
Definition: enumClasses.hpp:15
DataFormat
Definition: enumClasses.hpp:7