Skip to content

Commit

Permalink
added equality
Browse files Browse the repository at this point in the history
  • Loading branch information
IshankGulati committed Jan 17, 2016
1 parent 6405796 commit 5312db9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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]); }
}

Expand Down

0 comments on commit 5312db9

Please sign in to comment.