Fixed 2 failing python tests
authorAndrey Kamaev <no@email>
Mon, 16 Apr 2012 21:18:30 +0000 (21:18 +0000)
committerAndrey Kamaev <no@email>
Mon, 16 Apr 2012 21:18:30 +0000 (21:18 +0000)
modules/legacy/src/features2d.cpp
modules/python/test/test.py

index e9cbc34..5a6659d 100644 (file)
@@ -95,7 +95,7 @@ cvExtractSURF( const CvArr* _img, const CvArr* _mask,
     {
         if( _keypoints )
         {
-            CvSURFPoint pt = cvSURFPoint(kpt[i].pt, kpt[i].class_id, cvRound(kpt[i].size));
+            CvSURFPoint pt = cvSURFPoint(kpt[i].pt, kpt[i].class_id, cvRound(kpt[i].size), kpt[i].angle, kpt[i].response);
             cvSeqPush(*_keypoints, &pt);
         }
         if( _descriptors )
index d497ad0..daace0f 100644 (file)
@@ -239,7 +239,7 @@ class FunctionTests(OpenCVTests):
         a = self.get_sample("samples/c/lena.jpg", 0)
         b = self.get_sample("samples/c/lena.jpg", 0)
         (w,h) = cv.GetSize(a)
-        vel_size = (w - 8, h - 8)
+        vel_size = (w - 8 + 1, h - 8 + 1)
         velx = cv.CreateImage(vel_size, cv.IPL_DEPTH_32F, 1)
         vely = cv.CreateImage(vel_size, cv.IPL_DEPTH_32F, 1)
         cv.CalcOpticalFlowBM(a, b, (8,8), (1,1), (8,8), 0, velx, vely)