recorder.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. #include "DataSource.h"
  19. using namespace toolkit;
  20. using namespace std;
  21. //using namespace cv;
  22. namespace MIVA
  23. {
  24. class recorder
  25. {
  26. using Ptr = std::shared_ptr<recorder>;
  27. public:
  28. recorder() {}
  29. ~recorder() {}
  30. static std::shared_ptr<recorder> CreateNew();
  31. void Start();
  32. void Finish();
  33. void ConsumerData(std::string Pid,cv::Mat& frame);
  34. std::string GetFileName(std::string Pid);
  35. std::shared_ptr<cv::VideoWriter> GetVideoWriter(std::string Pid);
  36. private:
  37. struct Writer{
  38. std::string fileName = "";
  39. std::shared_ptr<cv::VideoWriter> videoWriter = nullptr;
  40. };
  41. map<std::string, Writer> videoWriters;
  42. public:
  43. bool enable = true;
  44. std::string outDir = "";
  45. std::string Dir = "./video/";
  46. };
  47. } // namespace name