You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ValidProcess.h 403 B

123456789101112131415161718192021
  1. #pragma once
  2. #include <map>
  3. #include "IProcess.h"
  4. #include "VideoProcess.h"
  5. class ValidProcess : public IProcess
  6. {
  7. public:
  8. ValidProcess(QObject* parent = Q_NULLPTR);
  9. ~ValidProcess();
  10. void init(Frame* frame, std::map<unsigned int, IProcess*>& mapUIntProcess);
  11. private:
  12. std::map<unsigned int, IProcess*> m_mapUIntProcess;
  13. private:
  14. void run() override;
  15. void frameExtract();
  16. };