This commit is contained in:
Tim Zeuner 2022-11-01 14:29:11 +01:00
parent d43cedf6f3
commit 1dc233d5e6
2 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,9 @@
#include "processing.h"
processing::processing(/* args */)
Processing::Processing(/* args */)
{
}
processing::~processing()
Processing::~Processing()
{
}

View File

@ -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();
};