Fix the issue in mouse click event

pull/5552/head
paul.kim 10 years ago
parent 454e5e5fa4
commit 78a566611d
  1. 1
      samples/python2/camshift.py

@ -44,6 +44,7 @@ class App(object):
if event == cv2.EVENT_LBUTTONDOWN: if event == cv2.EVENT_LBUTTONDOWN:
self.drag_start = (x, y) self.drag_start = (x, y)
self.tracking_state = 0 self.tracking_state = 0
return
if self.drag_start: if self.drag_start:
if flags & cv2.EVENT_FLAG_LBUTTON: if flags & cv2.EVENT_FLAG_LBUTTON:
h, w = self.frame.shape[:2] h, w = self.frame.shape[:2]

Loading…
Cancel
Save