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

@@ -1,9 +1,9 @@
#include "processing.h"

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

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

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

Loading…
Cancel
Save