1 #ifndef OPENPOSE_FILESTREAM_W_VIDEO_SAVER_HPP
2 #define OPENPOSE_FILESTREAM_W_VIDEO_SAVER_HPP
10 template<
typename TDatums>
14 explicit WVideoSaver(
const std::shared_ptr<VideoSaver>& videoSaver);
23 std::shared_ptr<VideoSaver> spVideoSaver;
37 template<
typename TDatums>
39 spVideoSaver{videoSaver}
43 template<
typename TDatums>
48 template<
typename TDatums>
53 template<
typename TDatums>
65 auto& tDatumsNoPtr = *tDatums;
67 std::vector<Matrix> opOutputDatas(tDatumsNoPtr.size());
68 for (
auto i = 0u ; i < opOutputDatas.size() ; i++)
69 opOutputDatas[i] = tDatumsNoPtr[i]->cvOutputData;
70 spVideoSaver->write(opOutputDatas);
78 catch (
const std::exception& e)
81 error(e.what(), __LINE__, __FUNCTION__, __FILE__);
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)
static const std::string timerInit(const int line, const std::string &function, const std::string &file)
static void timerEnd(const std::string &key)
WVideoSaver(const std::shared_ptr< VideoSaver > &videoSaver)
void workConsumer(const TDatums &tDatums)
void initializationOnThread()
bool checkNoNullNorEmpty(const TPointerContainer &tPointerContainer)
COMPILE_TEMPLATE_DATUM(WPoseTriangulation)
OP_API void error(const std::string &message, const int line=-1, const std::string &function="", const std::string &file="")
void opLogIfDebug(const T &message, const Priority priority=Priority::Max, const int line=-1, const std::string &function="", const std::string &file="")