2022-10-30 20:01:47 +01:00
|
|
|
#include <iostream>
|
2022-11-01 16:34:51 +01:00
|
|
|
#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);
|
2022-10-31 00:58:41 +01:00
|
|
|
Mat readWebcam();
|
2022-10-30 20:01:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|