fixed typo in SURF detector #2149

This commit is contained in:
Andrey Kamaev 2012-07-09 10:47:09 +00:00
parent d88bbb3d9d
commit 3869d38671

View File

@ -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;
}
};