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  try
45  {
46  spPoseExtractor->initializationOnThread();
47  }
48  catch (const std::exception& e)
49  {
50  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
51  }
52  }
53 
54  template<typename TDatums>
55  void WPoseExtractor<TDatums>::work(TDatums& tDatums)
56  {
57  try
58  {
59  if (checkNoNullNorEmpty(tDatums))
60  {
61  // Debugging log
62  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
63  // Profiling speed
64  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
65  // Extract people pose
66  for (auto i = 0u ; i < tDatums->size() ; i++)
67  // for (auto& tDatum : *tDatums)
68  {
69  auto& tDatum = (*tDatums)[i];
70  // OpenPose net forward pass
71  spPoseExtractor->forwardPass(tDatum.inputNetData,
72  Point<int>{tDatum.cvInputData.cols, tDatum.cvInputData.rows},
73  tDatum.scaleInputToNetInputs, tDatum.id);
74  // OpenPose keypoint detector
75  tDatum.poseCandidates = spPoseExtractor->getCandidatesCopy();
76  tDatum.poseHeatMaps = spPoseExtractor->getHeatMapsCopy();
77  tDatum.poseKeypoints = spPoseExtractor->getPoseKeypoints().clone();
78  tDatum.poseScores = spPoseExtractor->getPoseScores().clone();
79  tDatum.scaleNetToOutput = spPoseExtractor->getScaleNetToOutput();
80  // Keep desired top N people
81  spPoseExtractor->keepTopPeople(tDatum.poseKeypoints, tDatum.poseScores);
82  // ID extractor (experimental)
83  tDatum.poseIds = spPoseExtractor->extractIdsLockThread(tDatum.poseKeypoints, tDatum.cvInputData,
84  i, tDatum.id);
85  // Tracking (experimental)
86  spPoseExtractor->trackLockThread(tDatum.poseKeypoints, tDatum.poseIds, tDatum.cvInputData, i,
87  tDatum.id);
88  }
89  // Profiling speed
90  Profiler::timerEnd(profilerKey);
91  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
92  // Debugging log
93  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
94  }
95  }
96  catch (const std::exception& e)
97  {
98  this->stop();
99  tDatums = nullptr;
100  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
101  }
102  }
103 
104  COMPILE_TEMPLATE_DATUM(WPoseExtractor);
105 }
106 
107 #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:390
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:55
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)