本节实现的是使用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
后即可显示结果。显示结果如下: