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.

input.h 281B

123456789101112131415161718192021
  1. #include <iostream>
  2. #include <vector>
  3. #include <string>
  4. #include <algorithm>
  5. #include <opencv2/opencv.hpp>
  6. using namespace std;
  7. using namespace cv;
  8. class Input
  9. {
  10. private:
  11. public:
  12. Input(/* args */);
  13. ~Input();
  14. Mat readFile(String filePath);
  15. Mat readWebcam();
  16. };