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 236B

1 year ago
1 year ago
123456789101112131415
  1. #include "processing.h"
  2. Processing::Processing(/* args */)
  3. {
  4. }
  5. Processing::~Processing()
  6. {
  7. }
  8. Mat Processing::calculate_binaray(const Mat& inputPicture)
  9. {
  10. //cvtColor(inputPicture, inputPicture, COLOR_RGB2GRAY);
  11. return Mat();
  12. }