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
wFaceDetector.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_FACE_W_FACE_EXTRACTOR_HPP
2 #define OPENPOSE_FACE_W_FACE_EXTRACTOR_HPP
3 
7 
8 namespace op
9 {
10  template<typename TDatums>
11  class WFaceDetector : public Worker<TDatums>
12  {
13  public:
14  explicit WFaceDetector(const std::shared_ptr<FaceDetector>& faceDetector);
15 
17 
18  void work(TDatums& tDatums);
19 
20  private:
21  std::shared_ptr<FaceDetector> spFaceDetector;
22 
23  DELETE_COPY(WFaceDetector);
24  };
25 }
26 
27 
28 
29 
30 
31 // Implementation
33 namespace op
34 {
35  template<typename TDatums>
36  WFaceDetector<TDatums>::WFaceDetector(const std::shared_ptr<FaceDetector>& faceDetector) :
37  spFaceDetector{faceDetector}
38  {
39  }
40 
41  template<typename TDatums>
43  {
44  }
45 
46  template<typename TDatums>
47  void WFaceDetector<TDatums>::work(TDatums& tDatums)
48  {
49  try
50  {
51  if (checkNoNullNorEmpty(tDatums))
52  {
53  // Debugging log
54  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
55  // Profiling speed
56  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
57  // Detect people face
58  for (auto& tDatum : *tDatums)
59  tDatum.faceRectangles = spFaceDetector->detectFaces(tDatum.poseKeypoints);
60  // Profiling speed
61  Profiler::timerEnd(profilerKey);
62  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
63  // Debugging log
64  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
65  }
66  }
67  catch (const std::exception& e)
68  {
69  this->stop();
70  tDatums = nullptr;
71  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
72  }
73  }
74 
76 }
77 
78 #endif // OPENPOSE_FACE_W_FACE_EXTRACTOR_HPP
void work(TDatums &tDatums)
Definition: wFaceDetector.hpp:47
WFaceDetector(const std::shared_ptr< FaceDetector > &faceDetector)
Definition: wFaceDetector.hpp:36
Definition: worker.hpp:9
void initializationOnThread()
Definition: wFaceDetector.hpp:42
Definition: wFaceDetector.hpp:11
static const std::string timerInit(const int line, const std::string &function, const std::string &file)
OP_API void error(const std::string &message, const int line=-1, const std::string &function="", const std::string &file="")
void dLog(const T &message, const Priority priority=Priority::Max, const int line=-1, const std::string &function="", const std::string &file="")
Definition: errorAndLog.hpp:53
bool checkNoNullNorEmpty(const TPointerContainer &tPointerContainer)
Definition: pointerContainer.hpp:7
static void printAveragedTimeMsOnIterationX(const std::string &key, const int line, const std::string &function, const std::string &file, const unsigned long long x=DEFAULT_X)
COMPILE_TEMPLATE_DATUM(WPoseTriangulation)
static void timerEnd(const std::string &key)