12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #pragma once
- #include <iostream>
- #include <map>
- #include <time.h>
- #include <dirent.h>
- #include <time.h>
- #include <cstdlib>
- #include <dirent.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- // opencv
- #include <opencv2/core.hpp>
- #include <opencv2/videoio.hpp>
- #include <opencv2/highgui.hpp>
- #include <opencv2/imgproc.hpp>
- #include <opencv2/imgproc/types_c.h>
- #include "Util/logger.h"
- using namespace toolkit;
- using namespace std;
- //using namespace cv;
- namespace MIVA
- {
- class recorder
- {
- using Ptr = std::shared_ptr<recorder>;
- public:
- recorder() {}
- ~recorder() {}
- static std::shared_ptr<recorder> CreateNew();
- void Start();
- void Finish();
- void ConsumerData(int sourceId,cv::Mat& frame);
- std::string GetFileName(int sourceId);
- std::shared_ptr<cv::VideoWriter> GetVideoWriter(int sourceId);
- private:
- struct Writer{
- std::string fileName = "";
- std::shared_ptr<cv::VideoWriter> videoWriter = nullptr;
- };
- map<int, Writer> videoWriters;
- public:
- bool enable = true;
- std::string outDir = "";
- std::string Dir = "./video/";
- };
- } // namespace name
|