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
handCpuRenderer.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_HAND_HAND_CPU_RENDERER_HPP
2 #define OPENPOSE_HAND_HAND_CPU_RENDERER_HPP
3 
8 
9 namespace op
10 {
12  {
13  public:
14  HandCpuRenderer(const float renderThreshold, const float alphaKeypoint = HAND_DEFAULT_ALPHA_KEYPOINT,
15  const float alphaHeatMap = HAND_DEFAULT_ALPHA_HEAT_MAP);
16 
17  void renderHandInherited(Array<float>& outputData, const std::array<Array<float>, 2>& handKeypoints);
18 
20  };
21 }
22 
23 #endif // OPENPOSE_HAND_HAND_CPU_RENDERER_HPP
#define DELETE_COPY(className)
Definition: macros.hpp:31
std::array< T, N > array
Definition: cl2.hpp:594
const auto HAND_DEFAULT_ALPHA_HEAT_MAP
Definition: handParameters.hpp:49
Definition: handRenderer.hpp:8
const auto HAND_DEFAULT_ALPHA_KEYPOINT
Definition: handParameters.hpp:48
Definition: handCpuRenderer.hpp:11
#define OP_API
Definition: macros.hpp:16
Definition: renderer.hpp:10