Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lfr.h 523B

12345678910111213141516171819202122232425262728293031
  1. #include <iostream>
  2. #include <opencv2/opencv.hpp>
  3. #include <input.h>
  4. #include <processing.h>
  5. #include <control_module.h>
  6. #include <interpreter.h>
  7. #include <intersection_handler.h>
  8. #include <future>
  9. using namespace cv;
  10. class LFR
  11. {
  12. Input input;
  13. Processing processing;
  14. ControlModule controlModule;
  15. Interpreter interpreter;
  16. IntersectionHandler intersectionHandler;
  17. volatile bool iAmLooping;
  18. void loop();
  19. public:
  20. LFR();
  21. ~LFR();
  22. std::future<void> startLoop();
  23. void endLoop();
  24. };