OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
wJointAngleEstimation.hpp
Go to the documentation of this file.
1 #ifdef USE_3D_ADAM_MODEL
2 #ifndef OPENPOSE_3D_W_JOINT_ANGLE_ESTIMATION_HPP
3 #define OPENPOSE_3D_W_JOINT_ANGLE_ESTIMATION_HPP
4 
8 
9 namespace op
10 {
11  template<typename TDatums>
12  class WJointAngleEstimation : public Worker<TDatums>
13  {
14  public:
15  explicit WJointAngleEstimation(const std::shared_ptr<JointAngleEstimation>& jointAngleEstimation);
16 
17  virtual ~WJointAngleEstimation();
18 
19  void initializationOnThread();
20 
21  void work(TDatums& tDatums);
22 
23  private:
24  const std::shared_ptr<JointAngleEstimation> spJointAngleEstimation;
25 
26  DELETE_COPY(WJointAngleEstimation);
27  };
28 }
29 
30 
31 
32 
33 
34 // Implementation
36 namespace op
37 {
38  template<typename TDatums>
39  WJointAngleEstimation<TDatums>::WJointAngleEstimation(const std::shared_ptr<JointAngleEstimation>& jointAngleEstimation) :
40  spJointAngleEstimation{jointAngleEstimation}
41  {
42  }
43 
44  template<typename TDatums>
45  WJointAngleEstimation<TDatums>::~WJointAngleEstimation()
46  {
47  }
48 
49  template<typename TDatums>
50  void WJointAngleEstimation<TDatums>::initializationOnThread()
51  {
52  try
53  {
54  spJointAngleEstimation->initializationOnThread();
55  }
56  catch (const std::exception& e)
57  {
58  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
59  }
60  }
61 
62  template<typename TDatums>
63  void WJointAngleEstimation<TDatums>::work(TDatums& tDatums)
64  {
65  try
66  {
67  if (checkNoNullNorEmpty(tDatums))
68  {
69  // Debugging log
70  opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
71  // Profiling speed
72  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
73  // Input
74  auto& tDatumPtr = tDatums->at(0);
75  const auto& poseKeypoints3D = tDatumPtr->poseKeypoints3D;
76  const auto& faceKeypoints3D = tDatumPtr->faceKeypoints3D;
77  const auto& handKeypoints3D = tDatumPtr->handKeypoints3D;
78  // Running Adam model
79  spJointAngleEstimation->adamFastFit(
80  tDatumPtr->adamPose, tDatumPtr->adamTranslation, tDatumPtr->vtVec, tDatumPtr->j0Vec,
81  tDatumPtr->adamFaceCoeffsExp, poseKeypoints3D, faceKeypoints3D, handKeypoints3D);
82  // Profiling speed
83  Profiler::timerEnd(profilerKey);
84  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
85  // Debugging log
86  opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
87  }
88  }
89  catch (const std::exception& e)
90  {
91  this->stop();
92  tDatums = nullptr;
93  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
94  }
95  }
96 
97  COMPILE_TEMPLATE_DATUM(WJointAngleEstimation);
98 }
99 
100 #endif // OPENPOSE_3D_W_JOINT_ANGLE_ESTIMATION_HPP
101 #endif
#define COMPILE_TEMPLATE_DATUM(templateName)
Definition: datum.hpp:407
#define DELETE_COPY(className)
Definition: macros.hpp:32
bool checkNoNullNorEmpty(const TPointerContainer &tPointerContainer)
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