File size: 570 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 | #ifndef OPENPOSE_WRAPPER_ENUM_CLASSES_HPP
#define OPENPOSE_WRAPPER_ENUM_CLASSES_HPP
namespace op
{
enum class PoseMode : unsigned char
{
Disabled = 0,
Enabled,
NoNetwork,
Size,
};
enum class Detector : unsigned char
{
Body = 0,
OpenCV,
Provided,
BodyWithTracking,
Size,
};
enum class WorkerType : unsigned char
{
Input = 0,
PreProcessing,
PostProcessing,
Output,
Size,
};
}
#endif // OPENPOSE_WRAPPER_ENUM_CLASSES_HPP
|