1. 引言
通常我们会在图片上绘制矩形、圆形和其它图形,仅仅通过代码绘制非常简单,但是可能会面临使用鼠标在图片上动态绘制圆形的情况。鉴于网上的相关参考较少,且我在学习过程中也使用到,在前人文章分享的基础上,整理了一篇鼠标绘制圆形的文章。本文将给出算法的实现思路、代码实现和绘制结果,以供大家参考。
2. 实现思路
- 定义鼠标回调函数(在本文中为myMouseeventCircle()函数,注意函数各个形参的意义);
- 如果用单用左键绘制圆形的话,仅需识别鼠标的三种状态即可,即左键按下-左键移动-左键松开,这三个动作结束之后,即绘制好一个圆形;
- 首先按下左键,识别此时鼠标所在位置的坐标点为圆心O;
- 然后移动左键,此时鼠标位置与圆心O之间构成了圆形的半径;
- 最后松开左键,绘制出想要的圆形。
另外,绘制圆形非常简单,只需要调用opencv库中imgproc.hpp文件中声明的circle()函数即可,以下为文件中针对该函数的详细声明,一共有7个形参,具体每个形参的意义说得非常清楚,在此不再赘述。
/** @brief Draws a circle.
The function circle draws a simple or filled circle with a given center and radius.
@param img Image where the circle is drawn.
@param center Center of the circle, a point parameter.
@param radius Radius of the circle.
@param color Circle color.
@param thickness Thickness of the circle outline, if positive. Negative thickness means that a
filled circle is to be drawn.
@param lineType Type of the circle boundary. See the line description.
@param shift Number of fractional bits in the coordinates of the center and in the radius value.
*/
CV_EXPORTS_W void circle(InputOutputArray img, Point center, int radius,
const Scalar& color, int thickness = 1,
int lineType = LINE_8, int shift = 0);
3. 代码实现
#include<opencv2/opencv.hpp>
#include <opencv.hpp>
using namespace cv;
using