14 lines
283 B
C++
Raw Normal View History

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