fixed compile errors and warning on ubuntu64

This commit is contained in:
Maria Dimashova
2011-08-10 11:36:55 +00:00
parent 8bb9e4302e
commit 3569e18f0e
3 changed files with 19 additions and 19 deletions

View File

@@ -251,7 +251,7 @@ static void findConstrainedCorrespondences(const Mat& _F,
if( dist < threshold )
break;
}
if( i1 == keypoints1.size() )
if( i1 == (int)keypoints1.size() )
matches.push_back(Vec2i(i,bestIdx1));
}
}