c++ opencv 使用鼠标在图片上绘制圆形

1. 引言

通常我们会在图片上绘制矩形、圆形和其它图形,仅仅通过代码绘制非常简单,但是可能会面临使用鼠标在图片上动态绘制圆形的情况。鉴于网上的相关参考较少,且我在学习过程中也使用到,在前人文章分享的基础上,整理了一篇鼠标绘制圆形的文章。本文将给出算法的实现思路、代码实现和绘制结果,以供大家参考。

2. 实现思路

  1. 定义鼠标回调函数(在本文中为myMouseeventCircle()函数,注意函数各个形参的意义);
  2. 如果用单用左键绘制圆形的话,仅需识别鼠标的三种状态即可,即左键按下-左键移动-左键松开,这三个动作结束之后,即绘制好一个圆形;
  3. 首先按下左键,识别此时鼠标所在位置的坐标点为圆心O;
  4. 然后移动左键,此时鼠标位置与圆心O之间构成了圆形的半径;
  5. 最后松开左键,绘制出想要的圆形。

另外,绘制圆形非常简单,只需要调用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 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值