1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #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"
- #include "DataSource.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(std::string Pid,cv::Mat& frame);
- std::string GetFileName(std::string Pid);
- std::shared_ptr<cv::VideoWriter> GetVideoWriter(std::string Pid);
- private:
- struct Writer{
- std::string fileName = "";
- std::shared_ptr<cv::VideoWriter> videoWriter = nullptr;
- };
- map<std::string, Writer> videoWriters;
- public:
- bool enable = true;
- std::string outDir = "";
- std::string Dir = "./video/";
- };
- } // namespace name
|