genetic-images/src/main.cc

23 lines
642 B
C++
Raw Normal View History

#include "common.hh"
#include "parseargs.hh"
#include "drawing.hh"
2019-03-19 10:15:42 +00:00
2019-03-19 12:49:37 +00:00
int main(int ac, char **av) {
auto const [input_file, output_file, video_output, iterations] =
2019-03-19 13:22:59 +00:00
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 10:15:42 +00:00
draw_shape(process_image, cv::Point{0, 0}, 10, cv::Scalar(100, 100, 100),
Shapes::Square);
cv::imwrite("some.jpg", process_image);
// Launch image generation
2019-03-19 09:14:19 +00:00
return 0;
}