81 lines
2.6 KiB
C++
Raw Normal View History

2022-11-03 09:23:30 +01:00
#include "lfr.h"
2022-11-10 14:41:27 +01:00
2022-10-30 20:01:47 +01:00
LFR::LFR(int videoHeight, int videoWidth, int thresholdBinary, int gaussKernelSize, int thresholdCanny1, int thresholdCanny2, int apertureSizeCanny)
: iAmLooping(false), input(videoHeight, videoWidth), processing(), controlModule(), interpreter(), intersectionHandler()
2022-11-03 09:23:30 +01:00
{
this->iAmLooping = false;
this->thresholdBinary = thresholdBinary;
this->gaussKernelSize = gaussKernelSize;
this->thresholdCanny1 = thresholdCanny1;
this->thresholdCanny2 = thresholdCanny2;
this->apertureSizeCanny = apertureSizeCanny;
this->videoFlag = false;
this->saveOutputFlag = false;
this->outputFileName = "";
2022-11-03 09:23:30 +01:00
}
2022-11-03 09:23:30 +01:00
LFR::~LFR()
2022-10-30 20:01:47 +01:00
{
2022-11-03 11:18:18 +01:00
if(iAmLooping)
{
this->endLoop();
}
2022-11-03 09:23:30 +01:00
}
void LFR::loop()
{
if(this->videoFlag) {namedWindow("Display window");}
2022-11-10 14:41:27 +01:00
while(iAmLooping)
2022-11-03 09:23:30 +01:00
{
Mat originalImage = input.readWebcam();
Point roiOrigin(0, int(originalImage.rows*(7.5/12.0)));
Rect roi(roiOrigin.x, roiOrigin.y, originalImage.cols, originalImage.rows/12);
Mat processedImage = originalImage(roi);
processing.processImage(processedImage, this->thresholdBinary, this->gaussKernelSize, this->thresholdCanny1, thresholdCanny2, this->apertureSizeCanny);
FrameData data = processing.calculateLineSegments(processedImage, roi);
this->provideOutput(originalImage, data, roi);
2022-11-03 09:23:30 +01:00
}
if(this->videoFlag) {destroyWindow("Display window");}
2022-11-10 14:41:27 +01:00
input.freeWebcam();
2022-11-03 09:23:30 +01:00
}
2022-11-03 08:54:35 +01:00
2022-11-10 14:41:27 +01:00
void LFR::startLoop()
2022-11-03 09:23:30 +01:00
{
2022-11-03 11:18:18 +01:00
iAmLooping = true;
2022-11-10 14:41:27 +01:00
this->loopThread=thread(&LFR::loop, this);
2022-11-03 09:23:30 +01:00
}
void LFR::endLoop()
{
2022-11-03 11:18:18 +01:00
iAmLooping = false;
2022-11-10 14:41:27 +01:00
this->loopThread.join();
2022-11-03 11:18:18 +01:00
return;
}
void LFR::provideOutput(Mat image, const FrameData& frameData, const Rect& roi)
{
for(int i = 0; i < frameData.contours.size(); i++)
{
drawContours(image, frameData.contours, i, Scalar(0,255,255), 1, 8, noArray(), 0, Point(roi.x, roi.y));
rectangle(image, frameData.boundingBoxes[i], Scalar(0,255,0));
Rect center(Point(frameData.middlePoints[i].x-2, frameData.middlePoints[i].y-2), Point(frameData.middlePoints[i].x+2, frameData.middlePoints[i].y+2));
rectangle(image, center, Scalar(0,0,255));
Rect leftRect(Point(frameData.leftEdges[i].x-2, frameData.leftEdges[i].y-2), Point(frameData.leftEdges[i].x+2, frameData.leftEdges[i].y+2));
rectangle(image, leftRect, Scalar(0,0,255));
}
if(this->videoFlag)
{
imshow("Display window", image);
char c = (char)waitKey(25);
}
if (this->saveOutputFlag && !(this->outputFileName.empty()))
{
imwrite(this->outputFileName, image);
}
}