fixed some MSVC2008 compiler errors & warnings

This commit is contained in:
Vadim Pisarevsky
2010-07-05 08:11:52 +00:00
parent 576adb434d
commit 9cf319d504
4 changed files with 64 additions and 62 deletions

View File

@@ -364,6 +364,15 @@ void KeyPointCollection::clear()
/*
* GenericDescriptorMatch
*/
void GenericDescriptorMatch::match( const Mat&, vector<KeyPoint>&, vector<DMatch>& )
{
}
void GenericDescriptorMatch::match( const Mat&, vector<KeyPoint>&, vector<vector<DMatch> >&, float )
{
}
void GenericDescriptorMatch::add( KeyPointCollection& collection )
{
for( size_t i = 0; i < collection.images.size(); i++ )