#ifndef OPENPOSE_POSE_W_POSE_RENDERER_HPP #define OPENPOSE_POSE_W_POSE_RENDERER_HPP #include #include #include namespace op { template class WPoseRenderer : public Worker { public: explicit WPoseRenderer(const std::shared_ptr& poseRendererSharedPtr); virtual ~WPoseRenderer(); void initializationOnThread(); void work(TDatums& tDatums); private: std::shared_ptr spPoseRenderer; DELETE_COPY(WPoseRenderer); }; } // Implementation #include namespace op { template WPoseRenderer::WPoseRenderer(const std::shared_ptr& poseRendererSharedPtr) : spPoseRenderer{poseRendererSharedPtr} { } template WPoseRenderer::~WPoseRenderer() { } template void WPoseRenderer::initializationOnThread() { try { spPoseRenderer->initializationOnThread(); } catch (const std::exception& e) { error(e.what(), __LINE__, __FUNCTION__, __FILE__); } } template void WPoseRenderer::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__); // Render people pose for (auto& tDatumPtr : *tDatums) tDatumPtr->elementRendered = spPoseRenderer->renderPose( tDatumPtr->outputData, tDatumPtr->poseKeypoints, (float)tDatumPtr->scaleInputToOutput, (float)tDatumPtr->scaleNetToOutput); // 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(WPoseRenderer); } #endif // OPENPOSE_POSE_W_POSE_RENDERER_HPP