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 
46  float alphaHeatMap;
47 
55 
61  WrapperStructFace(const bool enable = false, const Point<int>& netInputSize = Point<int>{368, 368},
62  const RenderMode renderMode = RenderMode::Gpu,
63  const float alphaKeypoint = FACE_DEFAULT_ALPHA_KEYPOINT,
64  const float alphaHeatMap = FACE_DEFAULT_ALPHA_HEAT_MAP,
65  const float renderThreshold = 0.4f);
66  };
67 }
68 
69 #endif // OPENPOSE_WRAPPER_WRAPPER_STRUCT_FACE_HPP
float alphaHeatMap
Definition: wrapperStructFace.hpp:46
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:18
float renderThreshold
Definition: wrapperStructFace.hpp:54
const auto FACE_DEFAULT_ALPHA_HEAT_MAP
Definition: faceParameters.hpp:30
const auto FACE_DEFAULT_ALPHA_KEYPOINT
Definition: faceParameters.hpp:29