22 lines
281 B
C
Raw Normal View History

2022-10-30 20:01:47 +01:00
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
2022-10-30 20:01:47 +01:00
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
class Input
{
private:
public:
Input(/* args */);
~Input();
Mat readFile(String filePath);
Mat readWebcam();
2022-10-30 20:01:47 +01:00
};