#ifndef OPENPOSE_FACE_W_FACE_RENDERER_HPP #define OPENPOSE_FACE_W_FACE_RENDERER_HPP #include #include #include namespace op { template class WFaceRenderer : public Worker { public: explicit WFaceRenderer(const std::shared_ptr& faceRenderer); virtual ~WFaceRenderer(); void initializationOnThread(); void work(TDatums& tDatums); private: std::shared_ptr spFaceRenderer; DELETE_COPY(WFaceRenderer); }; } // Implementation #include namespace op { template WFaceRenderer::WFaceRenderer(const std::shared_ptr& faceRenderer) : spFaceRenderer{faceRenderer} { } template WFaceRenderer::~WFaceRenderer() { } template void WFaceRenderer::initializationOnThread() { spFaceRenderer->initializationOnThread(); } template void WFaceRenderer::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 face for (auto& tDatumPtr : *tDatums) spFaceRenderer->renderFace( tDatumPtr->outputData, tDatumPtr->faceKeypoints, (float)tDatumPtr->scaleInputToOutput); // 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(WFaceRenderer); } #endif // OPENPOSE_FACE_W_FACE_RENDERER_HPP