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