From b316d0ab8129df4c3a139ae3fe3b82d5bc87883a Mon Sep 17 00:00:00 2001 From: yasarba71520 Date: Tue, 1 Nov 2022 14:17:25 +0100 Subject: [PATCH] =?UTF-8?q?Processing=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Processing/processing.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Processing/processing.h diff --git a/Processing/processing.h b/Processing/processing.h new file mode 100644 index 0000000..9dab13f --- /dev/null +++ b/Processing/processing.h @@ -0,0 +1,16 @@ +#include +#include + +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(); +}; \ No newline at end of file