Home | History | Annotate | Download | only in test

Lines Matching full:points

198     test_array[INPUT].push_back(NULL); // points matrix
203 test_array[OUTPUT].push_back(NULL); // distorted dst points
204 test_array[TEMP].push_back(NULL); // dst points
274 vector<Point2d> points(N_POINTS);
279 Mat _points(test_mat[INPUT][0].size(), CV_64FC2, &points[0]);
283 //Generating points
286 points[i].x = cvtest::randReal(rng)*img_size.width;
287 points[i].y = cvtest::randReal(rng)*img_size.height;
388 double* points = new double[N_POINTS*2];
396 CvMat _points= cvMat(test_mat[TEMP][0].rows,test_mat[TEMP][0].cols,CV_64FC2,points);
417 points[i] = temp.data.fl[i];
424 points[2*i] = dst_points[i].x;
425 points[2*i+1] = dst_points[i].y;
446 delete[] points;
607 test_array[INPUT].push_back(NULL); // test points matrix
612 test_array[OUTPUT].push_back(NULL); // distorted dst points
700 vector<Point2d> points(N_POINTS);
705 Mat _points(test_mat[INPUT][0].size(),CV_64FC2, &points[0]);
707 //Generating points
710 points[i].x = cvtest::randReal(rng)*img_size.width;
711 points[i].y = cvtest::randReal(rng)*img_size.height;
795 vector<Point2d> points(N_POINTS);
803 Mat _points(test_mat[INPUT][0].size(),CV_64FC2,&points[0]);
825 points[i].x = _map1.data.fl[v*_map1.cols + u];
826 points[i].y = _map2.data.fl[v*_map2.cols + u];
847 double* points = new double[N_POINTS*2];
855 CvMat _points= cvMat(test_mat[INPUT][0].rows,test_mat[INPUT][0].cols,CV_64FC2,points);
897 delete[] points;