本文整理汇总了Python中cv2.EVENT_FLAG_LBUTTON属性的典型用法代码示例。如果您正苦于以下问题:Python cv2.EVENT_FLAG_LBUTTON属性的具体用法?Python cv2.EVENT_FLAG_LBUTTON怎么用?Python cv2.EVENT_FLAG_LBUTTON使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在模块cv2的用法示例。
在下文中一共展示了cv2.EVENT_FLAG_LBUTTON属性的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: on_mouse
点赞 6
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import EVENT_FLAG_LBUTTON [as 别名]
def on_mouse(self, event, x, y, flags, param):
pt = (x, y)
if event == cv2.EVENT_LBUTTONDOWN:
self.prev_pt = pt
elif event == cv2.EVENT_LBUTTONUP:
self.prev_pt = None
if self.prev_pt and flags & cv2.EVENT_FLAG_LBUTTON:
for dst, color in zip(self.dests, self.colors_func()):
cv2.line(dst, self.prev_pt, pt, color, 5)
self.dirty = True
self.prev_pt = pt
self.show()
# palette data from matplotlib/_cm.py
开发者ID:makelove,项目名称:OpenCV-Python-Tutorial,代码行数:18,
示例2: onmouse
点赞 6
# 需要导入模块: import cv2 [as 别名]
# 或者: from cv2 import EVENT_FLAG_LBUTTON [as 别名]
def onmouse(self, event, x, y, flags, param):
x, y = np.int16([x, y]) # BUG
if event == cv2.EVENT_LBUTTONDOWN:
se