#ifndef OPENPOSE_HAND_W_HAND_DETECTOR_UPDATE_HPP #define OPENPOSE_HAND_W_HAND_DETECTOR_UPDATE_HPP #include #include #include namespace op { template class WHandDetectorUpdate : public Worker { public: explicit WHandDetectorUpdate(const std::shared_ptr& handDetector); virtual ~WHandDetectorUpdate(); void initializationOnThread(); void work(TDatums& tDatums); private: std::shared_ptr spHandDetector; DELETE_COPY(WHandDetectorUpdate); }; } // Implementation #include namespace op { template WHandDetectorUpdate::WHandDetectorUpdate(const std::shared_ptr& handDetector) : spHandDetector{handDetector} { } template WHandDetectorUpdate::~WHandDetectorUpdate() { } template void WHandDetectorUpdate::initializationOnThread() { } template void WHandDetectorUpdate::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) spHandDetector->updateTracker(tDatumPtr->handKeypoints, tDatumPtr->id); // 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(WHandDetectorUpdate); } #endif // OPENPOSE_HAND_W_HAND_DETECTOR_UPDATE_HPP