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
wGui.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_GUI_W_GUI_HPP
2 #define OPENPOSE_GUI_W_GUI_HPP
3 
5 #include <openpose/gui/gui.hpp>
7 
8 namespace op
9 {
10  template<typename TDatums>
11  class WGui : public WorkerConsumer<TDatums>
12  {
13  public:
14  explicit WGui(const std::shared_ptr<Gui>& gui);
15 
17 
18  void workConsumer(const TDatums& tDatums);
19 
20  private:
21  std::shared_ptr<Gui> spGui;
22 
23  DELETE_COPY(WGui);
24  };
25 }
26 
27 
28 
29 
30 
31 // Implementation
33 namespace op
34 {
35  template<typename TDatums>
36  WGui<TDatums>::WGui(const std::shared_ptr<Gui>& gui) :
37  spGui{gui}
38  {
39  }
40 
41  template<typename TDatums>
43  {
44  try
45  {
46  spGui->initializationOnThread();
47  }
48  catch (const std::exception& e)
49  {
50  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
51  }
52  }
53 
54  template<typename TDatums>
55  void WGui<TDatums>::workConsumer(const TDatums& tDatums)
56  {
57  try
58  {
59  // tDatums might be empty but we still wanna update the GUI
60  if (tDatums != nullptr)
61  {
62  // Debugging log
63  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
64  // Profiling speed
65  const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__);
66  // Update cvMat
67  if (!tDatums->empty())
68  {
69  std::vector<cv::Mat> cvOutputDatas;
70  for (auto& tDatum : *tDatums)
71  cvOutputDatas.emplace_back(tDatum.cvOutputData);
72  spGui->setImage(cvOutputDatas);
73  }
74  // Refresh GUI
75  spGui->update();
76  // Profiling speed
77  if (!tDatums->empty())
78  {
79  Profiler::timerEnd(profilerKey);
80  Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__);
81  }
82  // Debugging log
83  dLog("", Priority::Low, __LINE__, __FUNCTION__, __FILE__);
84  }
85  }
86  catch (const std::exception& e)
87  {
88  this->stop();
89  error(e.what(), __LINE__, __FUNCTION__, __FILE__);
90  }
91  }
92 
94 }
95 
96 #endif // OPENPOSE_GUI_W_GUI_HPP
Definition: workerConsumer.hpp:10
Definition: wGui.hpp:11
void workConsumer(const TDatums &tDatums)
Definition: wGui.hpp:55
void initializationOnThread()
Definition: wGui.hpp:42
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="")
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
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)
WGui(const std::shared_ptr< Gui > &gui)
Definition: wGui.hpp:36
static void timerEnd(const std::string &key)