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
renderFace.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_FACE_RENDER_FACE_HPP
2 #define OPENPOSE_FACE_RENDER_FACE_HPP
3 
6 
7 namespace op
8 {
9  OP_API void renderFaceKeypointsCpu(Array<float>& frameArray, const Array<float>& faceKeypoints, const float renderThreshold);
10 
11  OP_API void renderFaceKeypointsGpu(float* framePtr, const Point<int>& frameSize, const float* const facePtr, const int numberPeople,
12  const float renderThreshold, const float alphaColorToAdd = FACE_DEFAULT_ALPHA_KEYPOINT);
13 }
14 
15 #endif // OPENPOSE_FACE_RENDER_FACE_HPP
OP_API void renderFaceKeypointsGpu(float *framePtr, const Point< int > &frameSize, const float *const facePtr, const int numberPeople, const float renderThreshold, const float alphaColorToAdd=FACE_DEFAULT_ALPHA_KEYPOINT)
OP_API void renderFaceKeypointsCpu(Array< float > &frameArray, const Array< float > &faceKeypoints, const float renderThreshold)
#define OP_API
Definition: macros.hpp:15
const auto FACE_DEFAULT_ALPHA_KEYPOINT
Definition: faceParameters.hpp:29