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  {
10  };
11 
12  enum class ProducerProperty : unsigned char
13  {
14  AutoRepeat = 0,
15  Flip,
16  Rotation,
17  Size,
18  };
19 
25  enum class ProducerType : unsigned char
26  {
27  FlirCamera,
29  IPCamera,
30  Video,
31  Webcam,
32  None,
33  };
34 }
35 
36 #endif // OPENPOSE_PRODUCER_ENUM_CLASSES_HPP
ProducerFpsMode
Definition: enumClasses.hpp:6
ProducerProperty
Definition: enumClasses.hpp:12
ProducerType
Definition: enumClasses.hpp:25