Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

processing.cpp 756B

123456789101112131415161718192021222324
  1. #include "processing.h"
  2. Processing::Processing(/* args */)
  3. {
  4. }
  5. Processing::~Processing()
  6. {
  7. }
  8. void Processing::processImage(Mat& inputPicture, int thresholdValue, int gaussKernelSize)
  9. {
  10. //Idea here is: Processing module consists of two methods:
  11. // One (this) to do all kinds of stuff to the picture (grayscale conversion, threshold, gauss etc etc)
  12. // And one (the other one) to segment the lines.
  13. // No return value here as the input is passed by reference -> directly modified.
  14. cvtColor(inputPicture, inputPicture, COLOR_BGR2GRAY);
  15. threshold(inputPicture, inputPicture, thresholdValue, 255, THRESH_BINARY);
  16. }
  17. std::vector<LFRLine> Processing::calculateLineSegments(const Mat& inputPicture)
  18. {
  19. return std::vector<LFRLine>();
  20. }