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
wrapperStructFace.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_WRAPPER_WRAPPER_STRUCT_FACE_HPP
2 #define OPENPOSE_WRAPPER_WRAPPER_STRUCT_FACE_HPP
3 
7 
8 namespace op
9 {
16  {
20  bool enable;
21 
28 
34 
40 
45  float alphaHeatMap;
46 
53 
59  WrapperStructFace(const bool enable = false, const Point<int>& netInputSize = Point<int>{368, 368},
60  const RenderMode renderMode = RenderMode::None,
61  const float alphaKeypoint = FACE_DEFAULT_ALPHA_KEYPOINT,
62  const float alphaHeatMap = FACE_DEFAULT_ALPHA_HEAT_MAP,
63  const float renderThreshold = 0.4f);
64  };
65 }
66 
67 #endif // OPENPOSE_WRAPPER_WRAPPER_STRUCT_FACE_HPP
float alphaHeatMap
Definition: wrapperStructFace.hpp:45
float alphaKeypoint
Definition: wrapperStructFace.hpp:39
Definition: wrapperStructFace.hpp:15
RenderMode renderMode
Definition: wrapperStructFace.hpp:33
bool enable
Definition: wrapperStructFace.hpp:20
RenderMode
Definition: enumClasses.hpp:24
Point< int > netInputSize
Definition: wrapperStructFace.hpp:27
#define OP_API
Definition: macros.hpp:16
float renderThreshold
Definition: wrapperStructFace.hpp:52
const auto FACE_DEFAULT_ALPHA_HEAT_MAP
Definition: faceParameters.hpp:30
const auto FACE_DEFAULT_ALPHA_KEYPOINT
Definition: faceParameters.hpp:29