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
faceDetector.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_FACE_FACE_DETECTOR_HPP
2 #define OPENPOSE_FACE_FACE_DETECTOR_HPP
3 
6 
7 namespace op
8 {
10  {
11  public:
12  explicit FaceDetector(const PoseModel poseModel);
13 
14  std::vector<Rectangle<float>> detectFaces(const Array<float>& poseKeypoints, const double scaleInputToOutput) const;
15 
16  private:
17  const unsigned int mNeck;
18  const unsigned int mNose;
19  const unsigned int mLEar;
20  const unsigned int mREar;
21  const unsigned int mLEye;
22  const unsigned int mREye;
23 
25  };
26 }
27 
28 #endif // OPENPOSE_FACE_FACE_DETECTOR_HPP
#define DELETE_COPY(className)
Definition: macros.hpp:30
PoseModel
Definition: enumClasses.hpp:9
#define OP_API
Definition: macros.hpp:15
Definition: faceDetector.hpp:9