Home | History | Annotate | Download | only in examples

Lines Matching refs:Options

77 // This structure contains options that controls how the homography
282 const EstimateHomographyOptions &options,
284 : options_(options), x1_(x1), x2_(x2), H_(H) {}
319 const EstimateHomographyOptions &options,
353 ceres::Solver::Options solver_options;
355 solver_options.max_num_iterations = options.max_num_iterations;
359 TerminationCheckingCallback callback(x1, x2, options, H);
403 EstimateHomographyOptions options;
404 options.expected_average_symmetric_distance = 0.02;
405 EstimateHomography2DFromCorrespondences(x1, x2, options, &estimated_matrix);