1 #ifndef OPENPOSE_FACE_W_FACE_EXTRACTOR_OPENCV_HPP
2 #define OPENPOSE_FACE_W_FACE_EXTRACTOR_OPENCV_HPP
10 template<
typename TDatums>
14 explicit WFaceDetectorOpenCV(
const std::shared_ptr<FaceDetectorOpenCV>& faceDetectorOpenCV);
20 void work(TDatums& tDatums);
23 std::shared_ptr<FaceDetectorOpenCV> spFaceDetectorOpenCV;
37 template<
typename TDatums>
39 spFaceDetectorOpenCV{faceDetectorOpenCV}
43 template<
typename TDatums>
48 template<
typename TDatums>
53 template<
typename TDatums>
65 for (
auto& tDatum : *tDatums)
66 tDatum.faceRectangles = spFaceDetectorOpenCV->detectFaces(tDatum.cvInputData);
74 catch (
const std::exception& e)
78 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
85 #endif // OPENPOSE_FACE_W_FACE_EXTRACTOR_OPENCV_HPP
void initializationOnThread()
Definition: wFaceDetectorOpenCV.hpp:49
virtual ~WFaceDetectorOpenCV()
Definition: wFaceDetectorOpenCV.hpp:44
void work(TDatums &tDatums)
Definition: wFaceDetectorOpenCV.hpp:54
static const std::string timerInit(const int line, const std::string &function, const std::string &file)
OP_API void error(const std::string &message, const int line=-1, const std::string &function="", const std::string &file="")
Definition: wFaceDetectorOpenCV.hpp:11
WFaceDetectorOpenCV(const std::shared_ptr< FaceDetectorOpenCV > &faceDetectorOpenCV)
Definition: wFaceDetectorOpenCV.hpp:38
void dLog(const T &message, const Priority priority=Priority::Max, const int line=-1, const std::string &function="", const std::string &file="")
Definition: errorAndLog.hpp:53
bool checkNoNullNorEmpty(const TPointerContainer &tPointerContainer)
Definition: pointerContainer.hpp:7
static void printAveragedTimeMsOnIterationX(const std::string &key, const int line, const std::string &function, const std::string &file, const unsigned long long x=DEFAULT_X)
COMPILE_TEMPLATE_DATUM(WPoseTriangulation)
static void timerEnd(const std::string &key)