genetic-images/include/genimg/methods.hh

15 lines
391 B
C++
Raw Normal View History

#ifndef GENETIC_IMAGE_INCLUDE_GENIMG_METHODS_HH_
#define GENETIC_IMAGE_INCLUDE_GENIMG_METHODS_HH_
2019-03-20 19:15:53 +00:00
2019-03-28 11:26:05 +00:00
#include <spdlog/spdlog.h>
2019-03-20 19:15:53 +00:00
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
2019-03-28 11:26:05 +00:00
void method1(cv::Mat const&, cv::Mat&, int);
2019-03-20 19:15:53 +00:00
2019-03-28 11:26:05 +00:00
void method2(cv::Mat const&, cv::Mat&, int);
2019-03-21 01:49:00 +00:00
2019-03-28 11:26:05 +00:00
void method3(cv::Mat const&, cv::Mat&, int);
2019-03-25 16:14:57 +00:00
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_METHODS_HH_ */