25 lines
773 B
C
Raw Normal View History

2022-11-01 14:17:25 +01:00
#include <iostream>
#include <opencv2/opencv.hpp>
#include <utils.h>
2022-11-14 11:37:38 +01:00
#include <vector>
2022-11-01 14:17:25 +01:00
using namespace cv;
2022-11-14 11:37:38 +01:00
using namespace std;
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();
void processImage(Mat& inputPicture, int thresholdBinary, int gaussKernelSize, int thresholdCanny1, int thresholdCanny2, int apertureSizeCanny);
FrameData calculateLineSegments(const Mat& inputPicture, const cv::Rect& roi);
2022-11-01 14:17:25 +01:00
};