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
wrapperStructInput.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_WRAPPER_WRAPPER_STRUCT_INPUT_HPP
2 #define OPENPOSE_WRAPPER_WRAPPER_STRUCT_INPUT_HPP
3 
6 
7 namespace op
8 {
14  {
19  std::shared_ptr<Producer> producerSharedPtr;
20 
25  unsigned long long frameFirst;
26 
31  unsigned long long frameLast;
32 
37 
41  bool frameFlip;
42 
48 
53 
59  WrapperStructInput(const std::shared_ptr<Producer> producerSharedPtr = nullptr,
60  const unsigned long long frameFirst = 0, const unsigned long long frameLast = -1,
61  const bool realTimeProcessing = false, const bool frameFlip = false,
62  const int frameRotate = 0, const bool framesRepeat = false);
63  };
64 }
65 
66 #endif // OPENPOSE_WRAPPER_WRAPPER_STRUCT_INPUT_HPP
bool frameFlip
Definition: wrapperStructInput.hpp:41
bool framesRepeat
Definition: wrapperStructInput.hpp:52
bool realTimeProcessing
Definition: wrapperStructInput.hpp:36
Definition: wrapperStructInput.hpp:13
std::shared_ptr< Producer > producerSharedPtr
Definition: wrapperStructInput.hpp:19
unsigned long long frameLast
Definition: wrapperStructInput.hpp:31
#define OP_API
Definition: macros.hpp:15
int frameRotate
Definition: wrapperStructInput.hpp:47
unsigned long long frameFirst
Definition: wrapperStructInput.hpp:25