Browse Source

Function prototype for calculate_binary

pull/1/head
Tim Zeuner 1 year ago
parent
commit
403aaf0cdd
2 changed files with 10 additions and 0 deletions
  1. 6
    0
      Processing/processing.cpp
  2. 4
    0
      Processing/processing.h

+ 6
- 0
Processing/processing.cpp View File



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

Mat Processing::calculate_binaray(const Mat& inputPicture)
{
//cvtColor(inputPicture, inputPicture, COLOR_RGB2GRAY);
return Mat();
} }

+ 4
- 0
Processing/processing.h View File

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


using namespace cv;

class Processing class Processing
{ {
private: private:
// 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();

Mat calculate_binaray(const Mat& inputPicture);
}; };

Loading…
Cancel
Save