11 lines
350 B
C++
11 lines
350 B
C++
|
#ifndef GENETIC_IMAGE_INCLUDE_GENIMG_DRAWING_HH_
|
||
|
#define GENETIC_IMAGE_INCLUDE_GENIMG_DRAWING_HH_
|
||
|
|
||
|
#include <opencv2/core/core.hpp>
|
||
|
#include <opencv2/highgui/highgui.hpp>
|
||
|
|
||
|
void draw_square(cv::Mat &t_img, cv::Point const &t_top_left, int const size,
|
||
|
cv::Scalar const &t_color);
|
||
|
|
||
|
#endif /* GENETIC_IMAGE_INCLUDE_GENIMG_DRAWING_HH_ */
|