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_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  enum class CocoJsonFormat : bool
14  {
15  Body,
16  Foot,
17  };
18 }
19 
20 #endif // OPENPOSE_FILESTREAM_ENUM_CLASSES_HPP
DataFormat
Definition: enumClasses.hpp:6
CocoJsonFormat
Definition: enumClasses.hpp:13