Merge pull request #1015 from SpecLad:merge-2.4

This commit is contained in:
Roman Donchenko
2013-06-21 17:38:04 +04:00
committed by OpenCV Buildbot
52 changed files with 1405 additions and 378 deletions

View File

@@ -71,7 +71,7 @@ int main( int argc, char** argv )
std::vector< DMatch > good_matches;
for( int i = 0; i < descriptors_1.rows; i++ )
{ if( matches[i].distance < 2*min_dist )
{ if( matches[i].distance <= 2*min_dist )
{ good_matches.push_back( matches[i]); }
}