From: Gary Bradski Date: Wed, 21 Mar 2012 05:13:02 +0000 (+0000) Subject: import as cv not cv2. Fixed X-Git-Tag: accepted/2.0/20130307.220821~1074 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad2ee1d5723391f6108722c6329ab18215792356;p=profile%2Fivi%2Fopencv.git import as cv not cv2. Fixed --- 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()