From ad2ee1d5723391f6108722c6329ab18215792356 Mon Sep 17 00:00:00 2001 From: Gary Bradski Date: Wed, 21 Mar 2012 05:13:02 +0000 Subject: [PATCH] import as cv not cv2. Fixed --- samples/python2/mouse_and_match.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python2/mouse_and_match.py b/samples/python2/mouse_and_match.py index 5a2aa7f..c5cc3ee 100755 --- a/samples/python2/mouse_and_match.py +++ b/samples/python2/mouse_and_match.py @@ -69,4 +69,4 @@ if __name__ == '__main__': cv.imshow("gray",gray) if (cv.waitKey() & 255) == 27: break - cv2.destroyAllWindows() + cv.destroyAllWindows() -- 2.7.4