Function prototype for calculate_binary
This commit is contained in:
parent
5bc51820e5
commit
403aaf0cdd
@ -7,3 +7,9 @@ Processing::Processing(/* args */)
|
|||||||
Processing::~Processing()
|
Processing::~Processing()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Mat Processing::calculate_binaray(const Mat& inputPicture)
|
||||||
|
{
|
||||||
|
//cvtColor(inputPicture, inputPicture, COLOR_RGB2GRAY);
|
||||||
|
return Mat();
|
||||||
|
}
|
@ -1,6 +1,8 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <opencv2/opencv.hpp>
|
#include <opencv2/opencv.hpp>
|
||||||
|
|
||||||
|
using namespace cv;
|
||||||
|
|
||||||
class Processing
|
class Processing
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
@ -13,4 +15,6 @@ public:
|
|||||||
// 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…
x
Reference in New Issue
Block a user