Home | History | Annotate | Download | only in test

Lines Matching defs:kp

90             const KeyPoint& kp = keypoints[i];
92 if(!r.contains(kp.pt))
94 ts->printf(cvtest::TS::LOG, "KeyPoint::pt is out of image (x=%f, y=%f).\n", kp.pt.x, kp.pt.y);
99 if(kp.size <= 0.f)
101 ts->printf(cvtest::TS::LOG, "KeyPoint::size is not positive (%f).\n", kp.size);
106 if((kp.angle < 0.f && kp.angle != -1.f) || kp.angle >= 360.f)
108 ts->printf(cvtest::TS::LOG, "KeyPoint::angle is out of range [0, 360). It's %f.\n", kp.angle);