From 10639d63f5fa93f52b32a712b95bb294f5e2add0 Mon Sep 17 00:00:00 2001 From: berak Date: Sun, 24 Nov 2013 15:58:13 +0100 Subject: [PATCH] mouse_and_match.py missing import cv2 --- samples/python2/mouse_and_match.py | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/python2/mouse_and_match.py b/samples/python2/mouse_and_match.py index f44003385..7937140e3 100755 --- a/samples/python2/mouse_and_match.py +++ b/samples/python2/mouse_and_match.py @@ -9,6 +9,7 @@ Demonstrate using a mouse to interact with an image: ESC to exit ''' import numpy as np +import cv2 # built-in modules import os