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);
20 void work(TDatums& tDatums);
23 std::shared_ptr<HandExtractorNet> spHandExtractorNet;
37 template<
typename TDatums>
39 spHandExtractorNet{handExtractorNet}
43 template<
typename TDatums>
48 template<
typename TDatums>
51 spHandExtractorNet->initializationOnThread();
54 template<
typename TDatums>
66 for (
auto& tDatum : *tDatums)
68 spHandExtractorNet->forwardPass(tDatum.handRectangles, tDatum.cvInputData);
69 for (
auto hand = 0 ; hand < 2 ; hand++)
71 tDatum.handHeatMaps[hand] = spHandExtractorNet->getHeatMaps()[hand].clone();
72 tDatum.handKeypoints[hand] = spHandExtractorNet->getHandKeypoints()[hand].clone();
82 catch (
const std::exception& e)
86 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
93 #endif // OPENPOSE_HAND_W_HAND_EXTRACTOR_NET_HPP
void initializationOnThread()
Definition: wHandExtractorNet.hpp:49
void work(TDatums &tDatums)
Definition: wHandExtractorNet.hpp:55
WHandExtractorNet(const std::shared_ptr< HandExtractorNet > &handExtractorNet)
Definition: wHandExtractorNet.hpp:38
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="")
virtual ~WHandExtractorNet()
Definition: wHandExtractorNet.hpp:44
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)