recorder.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #pragma once
  2. #include <iostream>
  3. #include <map>
  4. #include <time.h>
  5. #include <dirent.h>
  6. #include <time.h>
  7. #include <cstdlib>
  8. #include <dirent.h>
  9. #include <sys/types.h>
  10. #include <sys/stat.h>
  11. // opencv
  12. #include <opencv2/core.hpp>
  13. #include <opencv2/videoio.hpp>
  14. #include <opencv2/highgui.hpp>
  15. #include <opencv2/imgproc.hpp>
  16. #include <opencv2/imgproc/types_c.h>
  17. #include "Util/logger.h"
  18. using namespace toolkit;
  19. using namespace std;
  20. //using namespace cv;
  21. namespace MIVA
  22. {
  23. class recorder
  24. {
  25. using Ptr = std::shared_ptr<recorder>;
  26. public:
  27. recorder() {}
  28. ~recorder() {}
  29. static std::shared_ptr<recorder> CreateNew();
  30. void Start();
  31. void Finish();
  32. void ConsumerData(int sourceId,cv::Mat& frame);
  33. std::string GetFileName(int sourceId);
  34. std::shared_ptr<cv::VideoWriter> GetVideoWriter(int sourceId);
  35. private:
  36. struct Writer{
  37. std::string fileName = "";
  38. std::shared_ptr<cv::VideoWriter> videoWriter = nullptr;
  39. };
  40. map<int, Writer> videoWriters;
  41. public:
  42. bool enable = true;
  43. std::string outDir = "";
  44. std::string Dir = "./video/";
  45. };
  46. } // namespace name