1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #5981 from IshankGulati:feature_homography

This commit is contained in:
Alexander Alekhin
2016-01-18 10:05:14 +00:00
@@ -75,7 +75,7 @@ int main( int argc, char** argv )
std::vector< DMatch > good_matches;
for( int i = 0; i < descriptors_object.rows; i++ )
{ if( matches[i].distance < 3*min_dist )
{ if( matches[i].distance <= 3*min_dist )
{ good_matches.push_back( matches[i]); }
}