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  FrameStep,
18  Size,
19  };
20 
26  enum class ProducerType : unsigned char
27  {
28  FlirCamera,
30  IPCamera,
31  Video,
32  Webcam,
33  None,
34  };
35 }
36 
37 #endif // OPENPOSE_PRODUCER_ENUM_CLASSES_HPP
ProducerFpsMode
Definition: enumClasses.hpp:6
ProducerProperty
Definition: enumClasses.hpp:12
ProducerType
Definition: enumClasses.hpp:26