Python OpenCV双击鼠标绘制圆
原文链接 https://hlthu.github.io/opencv/2016/06/13/python-opencv-b.html
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。
本节实现的是使用OpenCV里自带的函数,在双击图片时,以其为圆心绘制圆。
- 回调函数
- 捕捉鼠标事件
实现过程
引用与创建空图
不再赘述,代码如下。
import cv2
import numpy
# empty image
img = np.zeros((512, 512, 3), np.uint8)
设置回调函数
检测鼠标事件,如果左击鼠标则绘制圆。
# call back function
def draw_circle(event, x, y, flags, param):
if event == cv2.EVENT_LBUTTONDBLCLK:
cv2.circle(img,(x,y),100,(255,0,0),1)
回调上述函数
cv2.namedWindow('circle')
cv2.setMouseCallback('circle', draw_circle)
显示图像
循环显示图像,如果检测到键盘输入q则退出。
while(1):
cv2.imshow('circle', img)
if cv2.waitKey(10) & 0xFF == ord('q'):
break
cv2.destroyAllWindows()
源代码
整个程序的源代码如下:
# created by Huang Lu
# 27/08/2016 19:33:52
# Department of EE, Tsinghua Univ.
import cv2
import numpy as np
# empty image
img = np.zeros((512, 512, 3), np.uint8)
# call back function
def draw_circle(event, x, y, flags, param):
if event == cv2.EVENT_LBUTTONDBLCLK:
cv2.circle(img,(x,y),100,(255,0,0),1)
cv2.namedWindow('circle')
cv2.setMouseCallback('circle', draw_circle)
while(1):
cv2.imshow('circle', img)
if cv2.waitKey(10) & 0xFF == ord('q'):
break
cv2.destroyAllWindows()
也可以参考我的GitHub上的,点击这里。
运行结果
在命令行进入该源程序所在目录后,运行python main.py
后即可显示结果。显示结果如下:
参考
- http://docs.opencv.org/2.4/modules/core/doc/drawing_functions.html
- OpenCV-Python-Toturial-中文版.pdf
- https://github.com/hlthu/Python-OpenCV-Learn/tree/master/Draw_Mouse/