genetic-images/src/main.cc

40 lines
998 B
C++
Raw Normal View History

2019-03-28 11:26:05 +00:00
#include "common.hh"
#include "methods.hh"
#include "parseargs.hh"
2019-03-28 11:39:33 +00:00
#include <cstdlib>
#include <ctime>
#include <iostream>
2019-03-19 10:15:42 +00:00
2019-03-28 11:26:05 +00:00
int main(int ac, char** av)
{
std::srand(std::time(nullptr));
auto const [input_file, output_file, iterations, method, verbose]
= parse_args(ac, av);
spdlog::set_level(verbose ? spdlog::level::debug : spdlog::level::info);
spdlog::debug("Input file:\t{}", input_file.native());
spdlog::debug("Output file:\t{}", output_file.native());
spdlog::debug("Iterations:\t{}", iterations);
auto [input_image, process_image] = init_image(input_file.native());
2019-03-19 10:15:42 +00:00
2019-03-28 11:26:05 +00:00
switch (method) {
case 1: {
method1(input_image, process_image, iterations);
break;
}
case 2: {
method2(input_image, process_image, iterations);
break;
}
case 3: {
method3(input_image, process_image, iterations);
break;
}
default:
spdlog::error("Requested method {} is not implemented.");
std::exit(-1);
}
2019-03-20 11:34:46 +00:00
2019-03-28 11:26:05 +00:00
cv::imwrite(output_file.native(), process_image);
return 0;
2019-03-19 09:14:19 +00:00
}