1 #ifndef OPENPOSE_HAND_W_HAND_DETECTOR_TRACKING_HPP
2 #define OPENPOSE_HAND_W_HAND_DETECTOR_TRACKING_HPP
10 template<
typename TDatums>
20 void work(TDatums& tDatums);
23 std::shared_ptr<HandDetector> spHandDetector;
37 template<
typename TDatums>
39 spHandDetector{handDetector}
43 template<
typename TDatums>
48 template<
typename TDatums>
53 template<
typename TDatums>
65 for (
auto& tDatum : *tDatums)
66 tDatum.handRectangles = spHandDetector->trackHands(tDatum.poseKeypoints);
74 catch (
const std::exception& e)
78 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
85 #endif // OPENPOSE_HAND_W_HAND_DETECTOR_TRACKING_HPP
void initializationOnThread()
Definition: wHandDetectorTracking.hpp:49
Definition: wHandDetectorTracking.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="")
virtual ~WHandDetectorTracking()
Definition: wHandDetectorTracking.hpp:44
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
WHandDetectorTracking(const std::shared_ptr< HandDetector > &handDetector)
Definition: wHandDetectorTracking.hpp:38
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)
void work(TDatums &tDatums)
Definition: wHandDetectorTracking.hpp:54
static void timerEnd(const std::string &key)