#ifndef OPENPOSE_FACE_W_FACE_EXTRACTOR_HPP #define OPENPOSE_FACE_W_FACE_EXTRACTOR_HPP #include #include #include namespace op { template class WFaceDetector : public Worker { public: explicit WFaceDetector(const std::shared_ptr& faceDetector); virtual ~WFaceDetector(); void initializationOnThread(); void work(TDatums& tDatums); private: std::shared_ptr spFaceDetector; DELETE_COPY(WFaceDetector); }; } // Implementation #include namespace op { template WFaceDetector::WFaceDetector(const std::shared_ptr& faceDetector) : spFaceDetector{faceDetector} { } template WFaceDetector::~WFaceDetector() { } template void WFaceDetector::initializationOnThread() { } template void WFaceDetector::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 face for (auto& tDatumPtr : *tDatums) tDatumPtr->faceRectangles = spFaceDetector->detectFaces(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(WFaceDetector); } #endif // OPENPOSE_FACE_W_FACE_EXTRACTOR_HPP