Searched refs:minpts (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | ransac.c | 310 static int get_rand_indices(int npoints, int minpts, int *indices, in get_rand_indices() argument 314 if (minpts > npoints) return 0; in get_rand_indices() 318 while (i < minpts) { in get_rand_indices() 375 int num_desired_motions, const int minpts, in ransac() argument 406 if (npoints < minpts * MINPTS_MULTIPLIER || npoints == 0) { in ransac() 455 if (!get_rand_indices(npoints, minpts, indices, &seed)) { in ransac() 460 copy_points_at_indices(points1, corners1, indices, minpts); in ransac() 461 copy_points_at_indices(points2, corners2, indices, minpts); in ransac() 470 if (find_transformation(minpts, points1, points2, params_this_motion)) { in ransac() 522 if (motions[i].num_inliers >= minpts) { in ransac() [all …]
|