Commit 3869d386 authored by Andrey Kamaev's avatar Andrey Kamaev

fixed typo in SURF detector #2149

parent d88bbb3d
......@@ -457,7 +457,7 @@ struct KeypointGreater
if(kp1.octave < kp2.octave) return false;
if(kp1.pt.y < kp2.pt.y) return false;
if(kp1.pt.y > kp2.pt.y) return true;
return kp1.pt.x < kp2.pt.y;
return kp1.pt.x < kp2.pt.x;
}
};
......
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