File size: 657 Bytes
7fc5a59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #ifndef OPENPOSE_UTILITIES_ENUM_CLASSES_HPP
#define OPENPOSE_UTILITIES_ENUM_CLASSES_HPP
namespace op
{
enum class ErrorMode : unsigned char
{
StdRuntimeError,
FileLogging,
StdCerr,
All,
};
enum class LogMode : unsigned char
{
FileLogging,
StdCout,
All,
};
enum class Priority : unsigned char
{
None = 0,
Low = 1,
Normal = 2,
High = 3,
Max = 4,
NoOutput = 255,
};
enum class Extensions : unsigned char
{
Images, // jpg, png, ...
Size
};
}
#endif // OPENPOSE_UTILITIES_ENUM_CLASSES_HPP
|