Lines Matching refs:Point3f
66 void generate3DPointCloud(vector<Point3f>& points, Point3f pmin = Point3f(-1, in generate3DPointCloud()
67 -1, 5), Point3f pmax = Point3f(1, 1, 10)) in generate3DPointCloud()
69 const Point3f delta = pmax - pmin; in generate3DPointCloud()
72 Point3f p(float(rand()) / RAND_MAX, float(rand()) / RAND_MAX, in generate3DPointCloud()
115 …virtual bool runTest(RNG& rng, int mode, int method, const vector<Point3f>& points, const double* … in runTest()
159 vector<Point3f> points, points_dls; in run()
211 …virtual bool runTest(RNG& rng, int mode, int method, const vector<Point3f>& points, const double* … in runTest()
224 std::vector<Point3f> opoints; in runTest()
227 opoints = std::vector<Point3f>(points.begin(), points.begin()+4); in runTest()
231 opoints = std::vector<Point3f>(points.begin(), points.begin()+50); in runTest()
323 std::vector<cv::Point3f> points3dF; in TEST()
353 vector<Point3f> p3d; in TEST()
354 p3d.push_back(Point3f(0,0,0)); in TEST()
355 p3d.push_back(Point3f(0,0,10)); in TEST()
356 p3d.push_back(Point3f(0,10,10)); in TEST()
357 p3d.push_back(Point3f(10,10,10)); in TEST()
358 p3d.push_back(Point3f(2,5,5)); in TEST()