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