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_PRODUCER_ENUM_CLASSES_HPP
2 #define OPENPOSE_PRODUCER_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
6  enum class ProducerFpsMode : bool
7  {
12  };
13 
14  enum class ProducerProperty : unsigned char
15  {
16  AutoRepeat = 0,
17  Flip,
18  Rotation,
19  FrameStep,
21  Size,
22  };
23 
29  enum class ProducerType : unsigned char
30  {
32  FlirCamera,
38  IPCamera,
40  Video,
42  Webcam,
44  None,
45  };
46 }
47 
48 #endif // OPENPOSE_PRODUCER_ENUM_CLASSES_HPP
ProducerType
Definition: enumClasses.hpp:30
ProducerProperty
Definition: enumClasses.hpp:15
ProducerFpsMode
Definition: enumClasses.hpp:7