From a29be81d779d9e12c29b906fa7645a4417825bae Mon Sep 17 00:00:00 2001 From: Alexander Mordvintesv Date: Tue, 7 Aug 2012 21:37:46 +0300 Subject: [PATCH] typo fix in features_homography.py --- samples/python2/feature_homography.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python2/feature_homography.py b/samples/python2/feature_homography.py index 21be4c7e0d..d09c764bcd 100644 --- a/samples/python2/feature_homography.py +++ b/samples/python2/feature_homography.py @@ -49,7 +49,7 @@ class App: ret, frame = self.cap.read() if not ret: break - self.frame = np.frame.copy() + self.frame = frame.copy() w, h = getsize(self.frame) vis = np.zeros((h, w*2, 3), np.uint8)