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

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