2019-03-19 13:49:57 +00: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-28 11:39:33 +00:00
|
|
|
#include <spdlog/spdlog.h>
|
2019-03-19 13:49:57 +00:00
|
|
|
#include <string>
|
2019-03-24 18:43:25 +00:00
|
|
|
#include <utility>
|
2019-03-20 19:14:55 +00:00
|
|
|
|
2019-04-01 14:55:02 +00:00
|
|
|
[[nodiscard]] auto init_image(std::string const&) noexcept
|
|
|
|
-> std::pair<cv::Mat, cv::Mat>;
|
2019-03-19 13:49:57 +00:00
|
|
|
|
2019-04-01 14:55:02 +00:00
|
|
|
[[nodiscard]] auto euclidian_distance(cv::Mat const&, cv::Mat const&) -> double;
|
2019-03-19 16:20:04 +00:00
|
|
|
|
2019-03-19 13:49:57 +00:00
|
|
|
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_COMMON_HH_ */
|