OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
wPoseExtractorNet.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_POSE_W_POSE_EXTRACTOR_NET_HPP
2 #define OPENPOSE_POSE_W_POSE_EXTRACTOR_NET_HPP
3 
7 
8 namespace op
9 {
10  template<typename TDatums>
11  class WPoseExtractorNet : public Worker<TDatums>
12  {
13  public:
14  explicit WPoseExtractorNet(const std::shared_ptr<PoseExtractorNet>& poseExtractorSharedPtr);
15 
16  virtual ~WPoseExtractorNet();
17 
19 
20  void work(TDatums& tDatums);
21 
22  private:
23  std::shared_ptr<PoseExtractorNet> spPoseExtractorNet;
24 
25  DELETE_COPY(WPoseExtractorNet);
26  };
27 }
28 
29 
30 
31 
32 
33 // Implementation
35 namespace op
36 {
37  template<typename TDatums>
38  WPoseExtractorNet<TDatums>::WPoseExtractorNet(const std::shared_ptr<PoseExtractorNet>& poseExtractorSharedPtr) :
39  spPoseExtractorNet{poseExtractorSharedPtr}
40  {
41  }
42 
43  template<typename TDatums>
45  {
46  }
47 
48  template<typename TDatums>
50  {
51  try
52  {
53  spPoseExtractorNet->initializationOnThread();
54  }
55  catch (const std::exception& e)
56  {
57  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
58  }
59  }
60 
61  template<typename TDatums>
62  void WPoseExtractorNet<TDatums>::work(TDatums& tDatums)
63  {
64  try
65  {
66  if (checkNoNullNorEmpty(tDatums))
67  {
68  // Debugging log
69  opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
70  // Profiling speed
71  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
72  // Extract people pose
73  for (auto& tDatumPtr : *tDatums)
74  {
75  spPoseExtractorNet->forwardPass(
76  tDatumPtr->inputNetData, Point<int>{tDatumPtr->cvInputData.cols(), tDatumPtr->cvInputData.rows()},
77  tDatumPtr->scaleInputToNetInputs, tDatumPtr->poseNetOutput);
78  tDatumPtr->poseCandidates = spPoseExtractorNet->getCandidatesCopy();
79  tDatumPtr->poseHeatMaps = spPoseExtractorNet->getHeatMapsCopy();
80  tDatumPtr->poseKeypoints = spPoseExtractorNet->getPoseKeypoints().clone();
81  tDatumPtr->poseScores = spPoseExtractorNet->getPoseScores().clone();
82  tDatumPtr->scaleNetToOutput = spPoseExtractorNet->getScaleNetToOutput();
83  }
84  // Profiling speed
85  Profiler::timerEnd(profilerKey);
86  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
87  // Debugging log
88  opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
89  }
90  }
91  catch (const std::exception& e)
92  {
93  this->stop();
94  tDatums = nullptr;
95  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
96  }
97  }
98 
100 }
101 
102 #endif // OPENPOSE_POSE_W_POSE_EXTRACTOR_NET_HPP
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 const std::string timerInit(const int line, const std::string &function, const std::string &file)
static void timerEnd(const std::string &key)
void work(TDatums &tDatums)
WPoseExtractorNet(const std::shared_ptr< PoseExtractorNet > &poseExtractorSharedPtr)
bool checkNoNullNorEmpty(const TPointerContainer &tPointerContainer)
COMPILE_TEMPLATE_DATUM(WPoseTriangulation)
OP_API void error(const std::string &message, const int line=-1, const std::string &function="", const std::string &file="")
void opLogIfDebug(const T &message, const Priority priority=Priority::Max, const int line=-1, const std::string &function="", const std::string &file="")
Definition: errorAndLog.hpp:97