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
wrapperStructHand.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_WRAPPER_WRAPPER_STRUCT_HAND_HPP
2 #define OPENPOSE_WRAPPER_WRAPPER_STRUCT_HAND_HPP
3 
7 
8 namespace op
9 {
16  {
20  bool enable;
21 
28 
35 
40  float scaleRange;
41 
47  bool tracking;
48 
54 
60 
65  float alphaHeatMap;
66 
73 
79  WrapperStructHand(const bool enable = false, const Point<int>& netInputSize = Point<int>{368, 368},
80  const int scalesNumber = 1, const float scaleRange = 0.4f,
81  const bool tracking = false, const RenderMode renderMode = RenderMode::None,
82  const float alphaKeypoint = HAND_DEFAULT_ALPHA_KEYPOINT,
83  const float alphaHeatMap = HAND_DEFAULT_ALPHA_HEAT_MAP,
84  const float renderThreshold = 0.2f);
85  };
86 }
87 
88 #endif // OPENPOSE_WRAPPER_WRAPPER_STRUCT_HAND_HPP
float alphaKeypoint
Definition: wrapperStructHand.hpp:59
float alphaHeatMap
Definition: wrapperStructHand.hpp:65
const auto HAND_DEFAULT_ALPHA_HEAT_MAP
Definition: handParameters.hpp:49
float scaleRange
Definition: wrapperStructHand.hpp:40
bool tracking
Definition: wrapperStructHand.hpp:47
const auto HAND_DEFAULT_ALPHA_KEYPOINT
Definition: handParameters.hpp:48
RenderMode
Definition: enumClasses.hpp:24
Definition: wrapperStructHand.hpp:15
float renderThreshold
Definition: wrapperStructHand.hpp:72
bool enable
Definition: wrapperStructHand.hpp:20
#define OP_API
Definition: macros.hpp:15
Point< int > netInputSize
Definition: wrapperStructHand.hpp:27
int scalesNumber
Definition: wrapperStructHand.hpp:34
RenderMode renderMode
Definition: wrapperStructHand.hpp:53