mirror of
https://github.com/opencv/opencv.git
synced 2026-09-12 13:23:03 -05:00
fixes for latest changes in opencv3.0 api
fixes for latest changes in opencv3.0 api waitKey() normalization fixed mser bindings
This commit is contained in:
@@ -86,7 +86,7 @@ def main():
|
||||
|
||||
cv2.imshow('frame', frame)
|
||||
cv2.imshow('bin', bin)
|
||||
ch = cv2.waitKey(1)
|
||||
ch = cv2.waitKey(1) & 0xFF
|
||||
if ch == 27:
|
||||
break
|
||||
|
||||
|
||||
Reference in New Issue
Block a user