Home | History | Annotate | Download | only in examples

Lines Matching refs:Problem

88 // Creates a Fields of Experts MAP inference problem.
91 Problem* problem,
100 problem->AddResidualBlock(cost_function,
129 problem->AddResidualBlock(cost_function[alpha_index],
137 // Solves the FoE problem using Ceres and post-processes it to make sure the
139 void SolveProblem(Problem* problem, PGMImage<double>* solution) {
157 ceres::Solve(options, problem, &summary);
209 ceres::Problem problem;
210 CreateProblem(foe, image, &problem, &solution);
212 SolveProblem(&problem, &solution);