File size: 426 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 | #ifndef OPENPOSE_FILESTREAM_ENUM_CLASSES_HPP
#define OPENPOSE_FILESTREAM_ENUM_CLASSES_HPP
namespace op
{
enum class DataFormat : unsigned char
{
Json,
Xml,
Yaml,
Yml,
};
enum class CocoJsonFormat : unsigned char
{
Body,
Hand21,
Hand42,
Face,
Foot,
Car,
Size,
};
}
#endif // OPENPOSE_FILESTREAM_ENUM_CLASSES_HPP
|