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

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