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 483B

123456789101112131415161718192021222324252627282930
  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. using namespace cv;
  9. class LFR
  10. {
  11. Input input;
  12. Processing processing;
  13. ControlModule controlModule;
  14. Interpreter interpreter;
  15. IntersectionHandler intersectionHandler;
  16. bool iAmLooping;
  17. void loop();
  18. public:
  19. LFR();
  20. ~LFR();
  21. void startLoop();
  22. void endLoop();
  23. };