removed duplicated check

pull/13383/head
Maria Dimashova 14 years ago
parent 97ae8f7af7
commit cd2f3786f0
  1. 2
      modules/features2d/src/keypoint.cpp

@ -247,8 +247,6 @@ struct KeyPoint_LessThan
return kp1.pt.y < kp2.pt.y;
if( kp1.size != kp2.size )
return kp1.size > kp2.size;
if( kp1.size != kp2.size )
return kp1.size > kp2.size;
if( kp1.angle != kp2.angle )
return kp1.angle < kp2.angle;
if( kp1.response != kp2.response )

Loading…
Cancel
Save