OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
faceRenderer.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_FACE_FACE_RENDERER_HPP
2 #define OPENPOSE_FACE_FACE_RENDERER_HPP
3 
5 
6 namespace op
7 {
9  {
10  public:
11  virtual ~FaceRenderer(){};
12 
13  virtual void initializationOnThread(){};
14 
15  void renderFace(Array<float>& outputData, const Array<float>& faceKeypoints,
16  const float scaleInputToOutput);
17 
18  private:
19  virtual void renderFaceInherited(Array<float>& outputData, const Array<float>& faceKeypoints) = 0;
20  };
21 }
22 
23 #endif // OPENPOSE_FACE_FACE_RENDERER_HPP
virtual ~FaceRenderer()
virtual void initializationOnThread()
void renderFace(Array< float > &outputData, const Array< float > &faceKeypoints, const float scaleInputToOutput)
#define OP_API
Definition: macros.hpp:18