Home
last modified time | relevance | path

Searched refs:keypoint1a (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/features2d/src/
Devaluation.cpp339 …EllipticKeyPoint keypoint1a = EllipticKeyPoint( kp1.center, Scalar(fac*kp1.ellipse[0], fac*kp1.ell… in computeOneToOneMatchedOverlaps() local
350 … int maxx = (int)ceil(( keypoint1a.boundingBox.width > (diff.x+keypoint2a.boundingBox.width)) ? in computeOneToOneMatchedOverlaps()
351keypoint1a.boundingBox.width : (diff.x+keypoint2a.boundingBox.width)); in computeOneToOneMatchedOverlaps()
352 … int minx = (int)floor((-keypoint1a.boundingBox.width < (diff.x-keypoint2a.boundingBox.width)) ? in computeOneToOneMatchedOverlaps()
353 … -keypoint1a.boundingBox.width : (diff.x-keypoint2a.boundingBox.width)); in computeOneToOneMatchedOverlaps()
355 … int maxy = (int)ceil(( keypoint1a.boundingBox.height > (diff.y+keypoint2a.boundingBox.height)) ? in computeOneToOneMatchedOverlaps()
356keypoint1a.boundingBox.height : (diff.y+keypoint2a.boundingBox.height)); in computeOneToOneMatchedOverlaps()
357 … int miny = (int)floor((-keypoint1a.boundingBox.height < (diff.y-keypoint2a.boundingBox.height)) ? in computeOneToOneMatchedOverlaps()
358 … -keypoint1a.boundingBox.height : (diff.y-keypoint2a.boundingBox.height)); in computeOneToOneMatchedOverlaps()
364 … IntersectAreaCounter ac( dr, minx, miny, maxy, diff, keypoint1a.ellipse, keypoint2a.ellipse ); in computeOneToOneMatchedOverlaps()