15 lines
440 B
C++
Raw Normal View History

2019-03-19 13:49:37 +01:00
#include "parseargs.hh"
#include "common.hh"
2019-03-19 11:15:42 +01:00
2019-03-19 13:49:37 +01:00
int main(int ac, char **av) {
2019-03-19 14:22:59 +01:00
const auto [input_file, output_file, video_output, iterations] =
parse_args(ac, av);
spdlog::info("Input file:\t{}", input_file);
spdlog::info("Output file:\t{}", output_file);
spdlog::info("Video output:\t{}", video_output);
spdlog::info("Iterations:\t{}", iterations);
auto [input_image, process_image] = init_image(input_file);
2019-03-19 11:15:42 +01:00
2019-03-19 10:14:19 +01:00
return 0;
}