Fixed 2 failing python tests

This commit is contained in:
Andrey Kamaev 2012-04-16 21:18:30 +00:00
parent ce32b4792f
commit 8f7e5811b6
2 changed files with 2 additions and 2 deletions

View 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 )

View 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)