OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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,
20  Size,
21  };
22 
28  enum class ProducerType : unsigned char
29  {
31  FlirCamera,
37  IPCamera,
39  Video,
41  Webcam,
43  None,
44  };
45 }
46 
47 #endif // OPENPOSE_PRODUCER_ENUM_CLASSES_HPP
ProducerFpsMode
Definition: enumClasses.hpp:6
ProducerProperty
Definition: enumClasses.hpp:14
ProducerType
Definition: enumClasses.hpp:28