OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kp1
(Results
1 - 21
of
21
) sorted by null
/external/opencv3/modules/features2d/src/
keypoint.cpp
62
inline bool operator()(const KeyPoint&
kp1
, const KeyPoint& kp2) const
64
return
kp1
.response > kp2.response;
170
const KeyPoint&
kp1
= (*kp)[i];
local
172
if(
kp1
.pt.x != kp2.pt.x )
173
return
kp1
.pt.x < kp2.pt.x;
174
if(
kp1
.pt.y != kp2.pt.y )
175
return
kp1
.pt.y < kp2.pt.y;
176
if(
kp1
.size != kp2.size )
177
return
kp1
.size > kp2.size;
178
if(
kp1
.angle != kp2.angle
203
KeyPoint&
kp1
= keypoints[kpidx[i]];
local
[
all
...]
draw.cpp
170
const KeyPoint&
kp1
, const KeyPoint& kp2, const Scalar& matchColor, int flags )
176
_drawKeypoint( outImg1,
kp1
, color, flags );
179
Point2f pt1 =
kp1
.pt,
212
const KeyPoint &
kp1
= keypoints1[i1], &kp2 = keypoints2[i2];
local
213
_drawMatch( outImg, outImg1, outImg2,
kp1
, kp2, matchColor, flags );
240
const KeyPoint &
kp1
= keypoints1[i1], &kp2 = keypoints2[i2];
local
241
_drawMatch( outImg, outImg1, outImg2,
kp1
, kp2, matchColor, flags );
evaluation.cpp
330
EllipticKeyPoint
kp1
= keypoints1[i1];
local
331
float maxDist = sqrt(
kp1
.axes.width*
kp1
.axes.height),
339
EllipticKeyPoint keypoint1a = EllipticKeyPoint(
kp1
.center, Scalar(fac*
kp1
.ellipse[0], fac*
kp1
.ellipse[1], fac*
kp1
.ellipse[2]) );
344
Point2f diff = kp2.center -
kp1
.center;