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.

processing.h 460B

2 years ago
2 years ago
2 years ago
12345678910111213141516
  1. #include <iostream>
  2. #include <opencv2/opencv.hpp>
  3. class Processing
  4. {
  5. private:
  6. /* data */
  7. public:
  8. Processing(/* args */);
  9. // To do:
  10. // Binärbild
  11. // Linien finden (HoughLinesP())
  12. // Entscheidung über wie viele Linien und welche Art von Linien erkannt werden (abknickende Linien)
  13. // End und Anfangspunkt analysieren und Winkel und Ausrichtung der Linie extrahieren (Abstand des untersten Punktes von der Mitte)
  14. ~Processing();
  15. };