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
wPoseExtractor.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_POSE_W_POSE_EXTRACTOR_HPP
2 #define OPENPOSE_POSE_W_POSE_EXTRACTOR_HPP
3 
7 
8 namespace op
9 {
10  template<typename TDatums>
11  class WPoseExtractor : public Worker<TDatums>
12  {
13  public:
14  explicit WPoseExtractor(const std::shared_ptr<PoseExtractor>& poseExtractorSharedPtr);
15 
17 
18  void work(TDatums& tDatums);
19 
20  private:
21  std::shared_ptr<PoseExtractor> spPoseExtractor;
22 
23  DELETE_COPY(WPoseExtractor);
24  };
25 }
26 
27 
28 
29 
30 
31 // Implementation
33 namespace op
34 {
35  template<typename TDatums>
36  WPoseExtractor<TDatums>::WPoseExtractor(const std::shared_ptr<PoseExtractor>& poseExtractorSharedPtr) :
37  spPoseExtractor{poseExtractorSharedPtr}
38  {
39  }
40 
41  template<typename TDatums>
43  {
44  spPoseExtractor->initializationOnThread();
45  }
46 
47  template<typename TDatums>
48  void WPoseExtractor<TDatums>::work(TDatums& tDatums)
49  {
50  try
51  {
52  if (checkNoNullNorEmpty(tDatums))
53  {
54  // Debugging log
55  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
56  // Profiling speed
57  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
58  // Extract people pose
59  for (auto& tDatum : *tDatums)
60  {
61  spPoseExtractor->forwardPass(tDatum.inputNetData,
62  Point<int>{tDatum.cvInputData.cols, tDatum.cvInputData.rows},
63  tDatum.scaleInputToNetInputs);
64  tDatum.poseCandidates = spPoseExtractor->getCandidatesCopy();
65  tDatum.poseHeatMaps = spPoseExtractor->getHeatMapsCopy();
66  tDatum.poseKeypoints = spPoseExtractor->getPoseKeypoints().clone();
67  tDatum.poseScores = spPoseExtractor->getPoseScores().clone();
68  tDatum.scaleNetToOutput = spPoseExtractor->getScaleNetToOutput();
69  }
70  // Profiling speed
71  Profiler::timerEnd(profilerKey);
72  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
73  // Debugging log
74  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
75  }
76  }
77  catch (const std::exception& e)
78  {
79  this->stop();
80  tDatums = nullptr;
81  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
82  }
83  }
84 
85  COMPILE_TEMPLATE_DATUM(WPoseExtractor);
86 }
87 
88 #endif // OPENPOSE_POSE_W_POSE_EXTRACTOR_HPP
WPoseExtractor(const std::shared_ptr< PoseExtractor > &poseExtractorSharedPtr)
Definition: wPoseExtractor.hpp:36
Definition: worker.hpp:9
#define COMPILE_TEMPLATE_DATUM(templateName)
Definition: datum.hpp:356
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 initializationOnThread()
Definition: wPoseExtractor.hpp:42
Definition: wPoseExtractor.hpp:11
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
void work(TDatums &tDatums)
Definition: wPoseExtractor.hpp:48
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)
static void timerEnd(const std::string &key)