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