OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
wHandExtractorNet.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_HAND_W_HAND_EXTRACTOR_NET_HPP
2 #define OPENPOSE_HAND_W_HAND_EXTRACTOR_NET_HPP
3 
7 
8 namespace op
9 {
10  template<typename TDatums>
11  class WHandExtractorNet : public Worker<TDatums>
12  {
13  public:
14  explicit WHandExtractorNet(const std::shared_ptr<HandExtractorNet>& handExtractorNet);
15 
16  virtual ~WHandExtractorNet();
17 
19 
20  void work(TDatums& tDatums);
21 
22  private:
23  std::shared_ptr<HandExtractorNet> spHandExtractorNet;
24 
25  DELETE_COPY(WHandExtractorNet);
26  };
27 }
28 
29 
30 
31 
32 
33 // Implementation
35 namespace op
36 {
37  template<typename TDatums>
38  WHandExtractorNet<TDatums>::WHandExtractorNet(const std::shared_ptr<HandExtractorNet>& handExtractorNet) :
39  spHandExtractorNet{handExtractorNet}
40  {
41  }
42 
43  template<typename TDatums>
45  {
46  }
47 
48  template<typename TDatums>
50  {
51  spHandExtractorNet->initializationOnThread();
52  }
53 
54  template<typename TDatums>
55  void WHandExtractorNet<TDatums>::work(TDatums& tDatums)
56  {
57  try
58  {
59  if (checkNoNullNorEmpty(tDatums))
60  {
61  // Debugging log
62  opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
63  // Profiling speed
64  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
65  // Extract people hands
66  for (auto& tDatumPtr : *tDatums)
67  {
68  spHandExtractorNet->forwardPass(tDatumPtr->handRectangles, tDatumPtr->cvInputData);
69  for (auto hand = 0 ; hand < 2 ; hand++)
70  {
71  tDatumPtr->handHeatMaps[hand] = spHandExtractorNet->getHeatMaps()[hand].clone();
72  tDatumPtr->handKeypoints[hand] = spHandExtractorNet->getHandKeypoints()[hand].clone();
73  }
74  }
75  // Profiling speed
76  Profiler::timerEnd(profilerKey);
77  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
78  // Debugging log
79  opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
80  }
81  }
82  catch (const std::exception& e)
83  {
84  this->stop();
85  tDatums = nullptr;
86  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
87  }
88  }
89 
91 }
92 
93 #endif // OPENPOSE_HAND_W_HAND_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)
WHandExtractorNet(const std::shared_ptr< HandExtractorNet > &handExtractorNet)
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