Commit 8203b82f authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #5981 from IshankGulati:feature_homography

parents 68eab8ea 5312db93
......@@ -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]); }
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment