2022-11-01 14:17:25 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <opencv2/opencv.hpp>
|
2022-11-10 17:09:00 +01:00
|
|
|
#include <utils.h>
|
2022-11-14 11:37:38 +01:00
|
|
|
#include <vector>
|
2022-11-01 14:17:25 +01:00
|
|
|
|
2022-11-01 14:56:17 +01:00
|
|
|
using namespace cv;
|
2022-11-14 11:37:38 +01:00
|
|
|
using namespace std;
|
2022-11-01 14:56:17 +01:00
|
|
|
|
2022-11-01 14:29:11 +01:00
|
|
|
class Processing
|
2022-11-01 14:17:25 +01:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
/* data */
|
|
|
|
public:
|
2022-11-01 14:29:11 +01:00
|
|
|
Processing(/* args */);
|
2022-11-01 14:17:25 +01:00
|
|
|
// 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)
|
2022-11-01 14:29:11 +01:00
|
|
|
~Processing();
|
2022-11-01 14:56:17 +01:00
|
|
|
|
2022-11-16 11:18:56 +01:00
|
|
|
void processImage(Mat& inputPicture, int thresholdBinary, int gaussKernelSize, int thresholdCanny1, int thresholdCanny2, int apertureSizeCanny);
|
2022-11-10 17:09:00 +01:00
|
|
|
|
2022-11-30 22:50:50 +01:00
|
|
|
FrameData calculateLineSegments(const Mat& inputPicture, const cv::Rect& roi);
|
2022-11-01 14:17:25 +01:00
|
|
|
};
|