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_UTILITIES_ENUM_CLASSES_HPP
2 #define OPENPOSE_UTILITIES_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
6  enum class ErrorMode : unsigned char
7  {
10  StdCerr,
11  All,
12  };
13 
14  enum class LogMode : unsigned char
15  {
17  StdCout,
18  All,
19  };
20 
21  enum class Priority : unsigned char
22  {
23  None = 0,
24  Low = 1,
25  Normal = 2,
26  High = 3,
27  Max = 4,
28  NoOutput = 255,
29  };
30 
31  enum class Extensions : unsigned char
32  {
33  Images, // jpg, png, ...
34  Size
35  };
36 }
37 
38 #endif // OPENPOSE_UTILITIES_ENUM_CLASSES_HPP
Extensions
Definition: enumClasses.hpp:32
ErrorMode
Definition: enumClasses.hpp:7
Priority
Definition: enumClasses.hpp:22