1 #ifndef OPENPOSE_HAND_W_HAND_EXTRACTOR_NET_HPP
2 #define OPENPOSE_HAND_W_HAND_EXTRACTOR_NET_HPP
10 template<
typename TDatums>
14 explicit WHandExtractorNet(
const std::shared_ptr<HandExtractorNet>& handExtractorNet);
18 void work(TDatums& tDatums);
21 std::shared_ptr<HandExtractorNet> spHandExtractorNet;
35 template<
typename TDatums>
37 spHandExtractorNet{handExtractorNet}
41 template<
typename TDatums>
44 spHandExtractorNet->initializationOnThread();
47 template<
typename TDatums>
59 for (
auto& tDatum : *tDatums)
61 spHandExtractorNet->forwardPass(tDatum.handRectangles, tDatum.cvInputData);
62 for (
auto hand = 0 ; hand < 2 ; hand++)
64 tDatum.handHeatMaps[hand] = spHandExtractorNet->getHeatMaps()[hand].clone();
65 tDatum.handKeypoints[hand] = spHandExtractorNet->getHandKeypoints()[hand].clone();
75 catch (
const std::exception& e)
79 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
86 #endif // OPENPOSE_HAND_W_HAND_EXTRACTOR_NET_HPP
void initializationOnThread()
Definition: wHandExtractorNet.hpp:42
void work(TDatums &tDatums)
Definition: wHandExtractorNet.hpp:48
WHandExtractorNet(const std::shared_ptr< HandExtractorNet > &handExtractorNet)
Definition: wHandExtractorNet.hpp:36
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: wHandExtractorNet.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)