Browse Source

p->P!

pull/1/head
Tim Zeuner 1 year ago
parent
commit
1dc233d5e6
2 changed files with 5 additions and 5 deletions
  1. 2
    2
      Processing/processing.cpp
  2. 3
    3
      Processing/processing.h

+ 2
- 2
Processing/processing.cpp View File

#include "processing.h" #include "processing.h"


processing::processing(/* args */)
Processing::Processing(/* args */)
{ {
} }


processing::~processing()
Processing::~Processing()
{ {
} }

+ 3
- 3
Processing/processing.h View File

#include <iostream> #include <iostream>
#include <opencv2/opencv.hpp> #include <opencv2/opencv.hpp>


class processing
class Processing
{ {
private: private:
/* data */ /* data */
public: public:
processing(/* args */);
Processing(/* args */);
// To do: // To do:
// Binärbild // Binärbild
// Linien finden (HoughLinesP()) // Linien finden (HoughLinesP())
// Entscheidung über wie viele Linien und welche Art von Linien erkannt werden (abknickende Linien) // 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) // End und Anfangspunkt analysieren und Winkel und Ausrichtung der Linie extrahieren (Abstand des untersten Punktes von der Mitte)
~processing();
~Processing();
}; };

Loading…
Cancel
Save