#ifndef MYLIB_H #define MYLIB_H #define SIZE_I 960 #define SIZE_J 1280 #define BLOCK_SIZE 16 #include "opencv2/opencv.hpp" #include #include #include #include #include using namespace std; using namespace cv; //---------------------get_frame--------------------- Mat get_frame(Mat frame); //---------------------noirBlanc------------------ Mat noirBlanc(Mat frame); //---------------------seuillage------------------ Mat seuillage(Mat frame); //---------------------contour-------------------- Mat contour(Mat frame); #endif