Lines Matching refs:ceres
279 class TerminationCheckingCallback : public ceres::IterationCallback {
286 virtual ceres::CallbackReturnType operator()( in operator ()()
287 const ceres::IterationSummary& summary) { in operator ()()
290 return ceres::SOLVER_CONTINUE; in operator ()()
303 return ceres::SOLVER_TERMINATE_SUCCESSFULLY; in operator ()()
306 return ceres::SOLVER_CONTINUE; in operator ()()
336 ceres::Problem problem; in EstimateHomography2DFromCorrespondences()
344 new ceres::AutoDiffCostFunction< in EstimateHomography2DFromCorrespondences()
353 ceres::Solver::Options solver_options; in EstimateHomography2DFromCorrespondences()
354 solver_options.linear_solver_type = ceres::DENSE_QR; in EstimateHomography2DFromCorrespondences()
363 ceres::Solver::Summary summary; in EstimateHomography2DFromCorrespondences()
364 ceres::Solve(solver_options, &problem, &summary); in EstimateHomography2DFromCorrespondences()