Processing hinzugefügt

This commit is contained in:
Baran Yasar 2022-11-01 14:17:25 +01:00
parent 58b094f175
commit b316d0ab81

16
Processing/processing.h Normal file
View File

@ -0,0 +1,16 @@
#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();
};