1 #ifndef OPENPOSE_GUI_W_GUI_3D_HPP
2 #define OPENPOSE_GUI_W_GUI_3D_HPP
11 template<
typename TDatums>
15 explicit WGui3D(
const std::shared_ptr<Gui3D>& gui3D);
22 std::shared_ptr<Gui3D> spGui3D;
36 template<
typename TDatums>
42 template<
typename TDatums>
47 spGui3D->initializationOnThread();
49 catch (
const std::exception& e)
51 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
55 template<
typename TDatums>
61 if (tDatums !=
nullptr)
68 if (!tDatums->empty())
71 std::vector<cv::Mat> cvOutputDatas;
72 for (
auto& tDatum : *tDatums)
73 cvOutputDatas.emplace_back(tDatum.cvOutputData);
74 spGui3D->setImage(cvOutputDatas);
76 auto& tDatum = (*tDatums)[0];
77 spGui3D->setKeypoints(tDatum.poseKeypoints3D, tDatum.faceKeypoints3D, tDatum.handKeypoints3D[0],
78 tDatum.handKeypoints3D[1]);
83 if (!tDatums->empty())
92 catch (
const std::exception& e)
95 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
102 #endif // OPENPOSE_GUI_W_GUI_3D_HPP
Definition: workerConsumer.hpp:10
void workConsumer(const TDatums &tDatums)
Definition: wGui3D.hpp:56
WGui3D(const std::shared_ptr< Gui3D > &gui3D)
Definition: wGui3D.hpp:37
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
void initializationOnThread()
Definition: wGui3D.hpp:43
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)
Definition: wGui3D.hpp:12