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.
12345678910111213141516 |
- #include <iostream>
- #include <opencv2/opencv.hpp>
-
- class processing
- {
- private:
- /* data */
- public:
- processing(/* args */);
- // To do:
- // Binärbild
- // Linien finden (HoughLinesP())
- // Entscheidung über wie viele Linien und welche Art von Linien erkannt werden (abknickende Linien)
- // End und Anfangspunkt analysieren und Winkel und Ausrichtung der Linie extrahieren (Abstand des untersten Punktes von der Mitte)
- ~processing();
- };
|