Browse Source

Processing hinzugefügt

pull/1/head
Baran Yasar 1 year ago
parent
commit
b316d0ab81
1 changed files with 16 additions and 0 deletions
  1. 16
    0
      Processing/processing.h

+ 16
- 0
Processing/processing.h 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();
};

Loading…
Cancel
Save