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
wCvMatToOpOutput.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_CORE_W_CV_MAT_TO_OP_OUTPUT_HPP
2 #define OPENPOSE_CORE_W_CV_MAT_TO_OP_OUTPUT_HPP
3 
7 
8 namespace op
9 {
10  template<typename TDatums>
11  class WCvMatToOpOutput : public Worker<TDatums>
12  {
13  public:
14  explicit WCvMatToOpOutput(const std::shared_ptr<CvMatToOpOutput>& cvMatToOpOutput);
15 
16  virtual ~WCvMatToOpOutput();
17 
19 
20  void work(TDatums& tDatums);
21 
22  private:
23  const std::shared_ptr<CvMatToOpOutput> spCvMatToOpOutput;
24 
25  DELETE_COPY(WCvMatToOpOutput);
26  };
27 }
28 
29 
30 
31 
32 
33 // Implementation
36 namespace op
37 {
38  template<typename TDatums>
39  WCvMatToOpOutput<TDatums>::WCvMatToOpOutput(const std::shared_ptr<CvMatToOpOutput>& cvMatToOpOutput) :
40  spCvMatToOpOutput{cvMatToOpOutput}
41  {
42  }
43 
44  template<typename TDatums>
46  {
47  }
48 
49  template<typename TDatums>
51  {
52  }
53 
54  template<typename TDatums>
55  void WCvMatToOpOutput<TDatums>::work(TDatums& tDatums)
56  {
57  try
58  {
59  if (checkNoNullNorEmpty(tDatums))
60  {
61  // Debugging log
62  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
63  // T* to T
64  auto& tDatumsNoPtr = *tDatums;
65  // Profiling speed
66  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
67  // cv::Mat -> float*
68  for (auto& tDatum : tDatumsNoPtr)
69  tDatum.outputData = spCvMatToOpOutput->createArray(tDatum.cvInputData, tDatum.scaleInputToOutput,
70  tDatum.netOutputSize);
71  // Profiling speed
72  Profiler::timerEnd(profilerKey);
73  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
74  // Debugging log
75  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
76  }
77  }
78  catch (const std::exception& e)
79  {
80  this->stop();
81  tDatums = nullptr;
82  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
83  }
84  }
85 
87 }
88 
89 #endif // OPENPOSE_CORE_W_CV_MAT_TO_OP_OUTPUT_HPP
Definition: worker.hpp:9
void work(TDatums &tDatums)
Definition: wCvMatToOpOutput.hpp:55
virtual ~WCvMatToOpOutput()
Definition: wCvMatToOpOutput.hpp:45
void initializationOnThread()
Definition: wCvMatToOpOutput.hpp:50
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="")
WCvMatToOpOutput(const std::shared_ptr< CvMatToOpOutput > &cvMatToOpOutput)
Definition: wCvMatToOpOutput.hpp:39
Definition: wCvMatToOpOutput.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
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)
COMPILE_TEMPLATE_DATUM(WPoseTriangulation)
static void timerEnd(const std::string &key)