genetic-images/include/genimg/methods.hh

13 lines
401 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
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <spdlog/spdlog.h>
2019-03-25 11:24:19 +00:00
void method1(cv::Mat &t_reference, cv::Mat &t_output, int t_iterations);
2019-03-20 19:15:53 +00:00
2019-03-25 11:24:19 +00:00
void method2(cv::Mat &t_reference, cv::Mat &t_output, int t_iterations);
2019-03-21 01:49:00 +00:00
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_METHODS_HH_ */