import cv2 as cv
events = [i for i in dir(cv) if 'EVENT' in i]
print( events ) # 打印所有的鼠标事件
import numpy as np
import cv2 as cv
# mouse callback function
def draw_circle(event,x,y,flags,param):
if event == cv.EVENT_LBUTTONDBLCLK:
cv.circle(img,(x,y),100,(255,0,0),-1)
# Create a black image, a window and bind the function to window
img = np.zeros((512,512,3), np.uint8)
cv.namedWindow('image')
cv.setMouseCallback('image',draw_circle) # 回调函数
while(1):
cv.imshow('image',img)
if cv.waitKey(20) & 0xFF == 27:
break
cv.destroyAllWindows()
参考文献:
https://blog.youkuaiyun.com/qq_41905045/article/details/81217731
https://docs.opencv.org/3.4.3/db/d5b/tutorial_py_mouse_handling.html