14 lines
283 B
C++
14 lines
283 B
C++
#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");
|
|
} |