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