2019-03-19 14:26:03 +00:00
|
|
|
#ifndef GENETIC_IMAGE_INCLUDE_GENIMG_DRAWING_HH_
|
|
|
|
#define GENETIC_IMAGE_INCLUDE_GENIMG_DRAWING_HH_
|
|
|
|
|
|
|
|
#include <opencv2/core/core.hpp>
|
|
|
|
#include <opencv2/highgui/highgui.hpp>
|
|
|
|
|
2019-03-20 10:40:17 +00:00
|
|
|
enum class Shapes { Square, Circle };
|
|
|
|
|
2019-03-20 19:14:55 +00:00
|
|
|
void draw_shape(cv::Mat &, cv::Point const &, int const, cv::Scalar const &,
|
|
|
|
Shapes const &);
|
2019-03-19 14:26:03 +00:00
|
|
|
|
|
|
|
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_DRAWING_HH_ */
|