#ifndef TOOLS__IMG_TOOLS_HPP #define TOOLS__IMG_TOOLS_HPP #include #include #include namespace tools { void draw_point( cv::Mat & img, const cv::Point & point, const cv::Scalar & color = {0, 0, 255}, int radius = 3); void draw_points( cv::Mat & img, const std::vector & points, const cv::Scalar & color = {0, 0, 255}, int thickness = 2); void draw_points( cv::Mat & img, const std::vector & points, const cv::Scalar & color = {0, 0, 255}, int thickness = 2); void draw_text( cv::Mat & img, const std::string & text, const cv::Point & point, const cv::Scalar & color = {0, 255, 255}, double font_scale = 1.0, int thickness = 2); } // namespace tools #endif // TOOLS__IMG_TOOLS_HPP