2019-03-19 14:49:57 +01:00
|
|
|
#ifndef GENETIC_IMAGE_INCLUDE_GENIMG_COMMON_HH_
|
|
|
|
#define GENETIC_IMAGE_INCLUDE_GENIMG_COMMON_HH_
|
|
|
|
|
|
|
|
#include <opencv2/core/core.hpp>
|
|
|
|
#include <opencv2/highgui/highgui.hpp>
|
2019-03-20 20:14:55 +01:00
|
|
|
#include <spdlog/spdlog.h>
|
2019-03-19 14:49:57 +01:00
|
|
|
#include <string>
|
2019-03-24 19:43:25 +01:00
|
|
|
#include <utility>
|
2019-03-20 20:14:55 +01:00
|
|
|
|
2019-03-24 19:43:25 +01:00
|
|
|
std::pair<cv::Mat, cv::Mat> init_image(std::string const &);
|
2019-03-19 14:49:57 +01:00
|
|
|
|
2019-03-20 20:14:55 +01:00
|
|
|
double euclidian_distance(cv::Mat const &, cv::Mat const &);
|
2019-03-19 17:20:04 +01:00
|
|
|
|
2019-03-19 14:49:57 +01:00
|
|
|
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_COMMON_HH_ */
|