#ifndef OPENPOSE_HAND_W_HAND_DETECTOR_TRACKING_HPP #define OPENPOSE_HAND_W_HAND_DETECTOR_TRACKING_HPP #include #include #include namespace op { template class WHandDetectorTracking : public Worker { public: explicit WHandDetectorTracking(const std::shared_ptr& handDetector); virtual ~WHandDetectorTracking(); void initializationOnThread(); void work(TDatums& tDatums); private: std::shared_ptr spHandDetector; DELETE_COPY(WHandDetectorTracking); }; } // Implementation #include namespace op { template WHandDetectorTracking::WHandDetectorTracking(const std::shared_ptr& handDetector) : spHandDetector{handDetector} { } template WHandDetectorTracking::~WHandDetectorTracking() { } template void WHandDetectorTracking::initializationOnThread() { } template void WHandDetectorTracking::work(TDatums& tDatums) { try { if (checkNoNullNorEmpty(tDatums)) { // Debugging log opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__); // Profiling speed const auto profilerKey = Profiler::timerInit(__LINE__, __FUNCTION__, __FILE__); // Detect people hand for (auto& tDatumPtr : *tDatums) tDatumPtr->handRectangles = spHandDetector->trackHands(tDatumPtr->poseKeypoints); // Profiling speed Profiler::timerEnd(profilerKey); Profiler::printAveragedTimeMsOnIterationX(profilerKey, __LINE__, __FUNCTION__, __FILE__); // Debugging log opLogIfDebug("", Priority::Low, __LINE__, __FUNCTION__, __FILE__); } } catch (const std::exception& e) { this->stop(); tDatums = nullptr; error(e.what(), __LINE__, __FUNCTION__, __FILE__); } } COMPILE_TEMPLATE_DATUM(WHandDetectorTracking); } #endif // OPENPOSE_HAND_W_HAND_DETECTOR_TRACKING_HPP