1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef __UTIL_H__ #define __UTIL_H__ #include <opencv2/opencv.hpp> using namespace cv; float flopow(float b, float e); Mat circle_mat(int radius); #endif