Lines Matching refs:findHomography
314 Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method), in run()
315 cv::findHomography(src_mat_2f, dst_vec, method), in run()
316 cv::findHomography(src_vec, dst_mat_2f, method), in run()
317 cv::findHomography(src_vec, dst_vec, method) }; in run()
347 …Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method, reproj_threshold, mask[0]), in run()
348 … cv::findHomography(src_mat_2f, dst_vec, method, reproj_threshold, mask[1]), in run()
349 … cv::findHomography(src_vec, dst_mat_2f, method, reproj_threshold, mask[2]), in run()
350 … cv::findHomography(src_vec, dst_vec, method, reproj_threshold, mask[3]) }; in run()
417 Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f), in run()
418 cv::findHomography(src_mat_2f, dst_vec), in run()
419 cv::findHomography(src_vec, dst_mat_2f), in run()
420 cv::findHomography(src_vec, dst_vec) }; in run()
475 …Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method, reproj_threshold, mask_res… in run()
476 … cv::findHomography(src_mat_2f, dst_vec, method, reproj_threshold, mask_res[1]), in run()
477 … cv::findHomography(src_vec, dst_mat_2f, method, reproj_threshold, mask_res[2]), in run()
478 … cv::findHomography(src_vec, dst_vec, method, reproj_threshold, mask_res[3]) }; in run()
618 Mat h = findHomography(p1, p2, RANSAC, 0.01, mask); in TEST()
684 H0 = findHomography( pointframe1, pointframe2, RANSAC, 3.0, inliers0 ); in TEST()
692 H1 = findHomography( pointframe1, pointframe2, RHO, 3.0, inliers1 ); in TEST()