14 lines
332 B
C++
Raw Normal View History

2022-10-30 20:01:47 +01:00
#include <iostream>
#include <opencv2/opencv.hpp>
#include <input.h>
2022-11-01 14:18:02 +01:00
#include <processing.h>
2022-10-30 20:01:47 +01:00
using namespace cv;
int main(void)
{
std::cout<<"Hello world";
Input test;
2022-11-01 14:18:02 +01:00
// Mat image1 = test.readFile("C:\\Line-Following-Robot\\Test_data\\WhatsApp Image 2022-10-26 at 09.54.14.jpeg");
Mat image2 = test.readWebcam();
2022-10-30 20:01:47 +01:00
}