@@ -1,9 +1,9 @@ | |||
#include "processing.h" | |||
processing::processing(/* args */) | |||
Processing::Processing(/* args */) | |||
{ | |||
} | |||
processing::~processing() | |||
Processing::~Processing() | |||
{ | |||
} |
@@ -1,16 +1,16 @@ | |||
#include <iostream> | |||
#include <opencv2/opencv.hpp> | |||
class processing | |||
class Processing | |||
{ | |||
private: | |||
/* data */ | |||
public: | |||
processing(/* args */); | |||
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(); | |||
~Processing(); | |||
}; |