1 #ifndef OPENPOSE_GUI_W_ADD_GUI_INFO_HPP
2 #define OPENPOSE_GUI_W_ADD_GUI_INFO_HPP
10 template<
typename TDatums>
14 explicit WGuiInfoAdder(
const std::shared_ptr<GuiInfoAdder>& guiInfoAdder);
18 void work(TDatums& tDatums);
21 std::shared_ptr<GuiInfoAdder> spGuiInfoAdder;
35 template<
typename TDatums>
37 spGuiInfoAdder{guiInfoAdder}
41 template<
typename TDatums>
46 template<
typename TDatums>
58 for (
auto& tDatum : *tDatums)
59 spGuiInfoAdder->addInfo(tDatum.cvOutputData, std::max(tDatum.poseKeypoints.getSize(0),
60 tDatum.faceKeypoints.getSize(0)),
61 tDatum.id, tDatum.elementRendered.second, tDatum.frameNumber,
62 tDatum.poseIds, tDatum.poseKeypoints);
70 catch (
const std::exception& e)
74 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
81 #endif // OPENPOSE_GUI_W_ADD_GUI_INFO_HPP
void initializationOnThread()
Definition: wGuiInfoAdder.hpp:42
Definition: wGuiInfoAdder.hpp:11
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 work(TDatums &tDatums)
Definition: wGuiInfoAdder.hpp:47
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)
WGuiInfoAdder(const std::shared_ptr< GuiInfoAdder > &guiInfoAdder)
Definition: wGuiInfoAdder.hpp:36