blob: 78dbd012b8958f7ba364bebdc13f315815a8bb05 [file] [log] [blame]
Keir Mierle8ebb0732012-04-30 23:09:08 -07001// Ceres Solver - A fast non-linear least squares minimizer
2// Copyright 2010, 2011, 2012 Google Inc. All rights reserved.
3// http://code.google.com/p/ceres-solver/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: sameeragarwal@google.com (Sameer Agarwal)
30//
31// An example of solving a dynamically sized problem with various
32// solvers and loss functions.
33//
34// For a simpler bare bones example of doing bundle adjustment with
35// Ceres, please see simple_bundle_adjuster.cc.
36//
37// NOTE: This example will not compile without gflags and SuiteSparse.
38//
39// The problem being solved here is known as a Bundle Adjustment
40// problem in computer vision. Given a set of 3d points X_1, ..., X_n,
41// a set of cameras P_1, ..., P_m. If the point X_i is visible in
42// image j, then there is a 2D observation u_ij that is the expected
43// projection of X_i using P_j. The aim of this optimization is to
44// find values of X_i and P_j such that the reprojection error
45//
46// E(X,P) = sum_ij |u_ij - P_j X_i|^2
47//
48// is minimized.
49//
50// The problem used here comes from a collection of bundle adjustment
51// problems published at University of Washington.
52// http://grail.cs.washington.edu/projects/bal
53
54#include <algorithm>
55#include <cmath>
56#include <cstdio>
Sameer Agarwal1b7f3b52012-08-09 21:46:19 -070057#include <cstdlib>
Keir Mierle8ebb0732012-04-30 23:09:08 -070058#include <string>
59#include <vector>
60
Keir Mierle8ebb0732012-04-30 23:09:08 -070061#include "bal_problem.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070062#include "ceres/ceres.h"
Sameer Agarwal5476df52012-08-09 21:46:19 -070063#include "ceres/random.h"
Sameer Agarwal4b040432012-08-13 14:38:41 -070064#include "gflags/gflags.h"
65#include "glog/logging.h"
66#include "snavely_reprojection_error.h"
Keir Mierle8ebb0732012-04-30 23:09:08 -070067
68DEFINE_string(input, "", "Input File name");
Sameer Agarwalcbae8562012-09-02 13:50:43 -070069DEFINE_string(trust_region_strategy, "levenberg_marquardt",
Sameer Agarwal65625f72012-09-17 12:06:57 -070070 "Options are: levenberg_marquardt, dogleg.");
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070071DEFINE_string(dogleg, "traditional_dogleg", "Options are: traditional_dogleg,"
72 "subspace_dogleg.");
73
74DEFINE_bool(inner_iterations, false, "Use inner iterations to non-linearly "
75 "refine each successful trust region step.");
76
Sameer Agarwalba8d9672012-10-02 00:48:57 -070077DEFINE_string(blocks_for_inner_iterations, "automatic", "Options are: "
78 "automatic, cameras, points, cameras,points, points,cameras");
Sameer Agarwal9123e2f2012-09-18 21:49:06 -070079
Sameer Agarwalcbae8562012-09-02 13:50:43 -070080DEFINE_string(linear_solver, "sparse_schur", "Options are: "
81 "sparse_schur, dense_schur, iterative_schur, sparse_normal_cholesky, "
Sameer Agarwal65625f72012-09-17 12:06:57 -070082 "dense_qr, dense_normal_cholesky and cgnr.");
Sameer Agarwalcbae8562012-09-02 13:50:43 -070083DEFINE_string(preconditioner, "jacobi", "Options are: "
84 "identity, jacobi, schur_jacobi, cluster_jacobi, "
Sameer Agarwal65625f72012-09-17 12:06:57 -070085 "cluster_tridiagonal.");
Sameer Agarwalcbae8562012-09-02 13:50:43 -070086DEFINE_string(sparse_linear_algebra_library, "suite_sparse",
Sameer Agarwal65625f72012-09-17 12:06:57 -070087 "Options are: suite_sparse and cx_sparse.");
88DEFINE_string(ordering, "automatic", "Options are: automatic, user.");
Sameer Agarwalcbae8562012-09-02 13:50:43 -070089
Sameer Agarwal5476df52012-08-09 21:46:19 -070090DEFINE_bool(use_quaternions, false, "If true, uses quaternions to represent "
Sameer Agarwal65625f72012-09-17 12:06:57 -070091 "rotations. If false, angle axis is used.");
Sameer Agarwal5476df52012-08-09 21:46:19 -070092DEFINE_bool(use_local_parameterization, false, "For quaternions, use a local "
93 "parameterization.");
Sameer Agarwal65625f72012-09-17 12:06:57 -070094DEFINE_bool(robustify, false, "Use a robust loss function.");
Sameer Agarwal5476df52012-08-09 21:46:19 -070095
Sameer Agarwal5476df52012-08-09 21:46:19 -070096DEFINE_double(eta, 1e-2, "Default value for eta. Eta determines the "
97 "accuracy of each linear solve of the truncated newton step. "
Sameer Agarwal65625f72012-09-17 12:06:57 -070098 "Changing this parameter can affect solve performance.");
Sameer Agarwal5476df52012-08-09 21:46:19 -070099
Sameer Agarwal5476df52012-08-09 21:46:19 -0700100DEFINE_bool(use_block_amd, true, "Use a block oriented fill reducing "
101 "ordering.");
102
Sameer Agarwal65625f72012-09-17 12:06:57 -0700103DEFINE_int32(num_threads, 1, "Number of threads.");
104DEFINE_int32(num_iterations, 5, "Number of iterations.");
Sameer Agarwalfa015192012-06-11 14:21:42 -0700105DEFINE_double(max_solver_time, 1e32, "Maximum solve time in seconds.");
Sameer Agarwala8f87d72012-08-08 10:38:31 -0700106DEFINE_bool(nonmonotonic_steps, false, "Trust region algorithm can use"
Sameer Agarwal65625f72012-09-17 12:06:57 -0700107 " nonmonotic steps.");
Keir Mierle8ebb0732012-04-30 23:09:08 -0700108
Sameer Agarwal5476df52012-08-09 21:46:19 -0700109DEFINE_double(rotation_sigma, 0.0, "Standard deviation of camera rotation "
110 "perturbation.");
111DEFINE_double(translation_sigma, 0.0, "Standard deviation of the camera "
112 "translation perturbation.");
113DEFINE_double(point_sigma, 0.0, "Standard deviation of the point "
Sameer Agarwal65625f72012-09-17 12:06:57 -0700114 "perturbation.");
Sameer Agarwal5476df52012-08-09 21:46:19 -0700115DEFINE_int32(random_seed, 38401, "Random seed used to set the state "
116 "of the pseudo random number generator used to generate "
117 "the pertubations.");
Sameer Agarwal1b7f3b52012-08-09 21:46:19 -0700118DEFINE_string(solver_log, "", "File to record the solver execution to.");
Sameer Agarwal5476df52012-08-09 21:46:19 -0700119
Keir Mierle8ebb0732012-04-30 23:09:08 -0700120namespace ceres {
121namespace examples {
122
123void SetLinearSolver(Solver::Options* options) {
Sameer Agarwalcbae8562012-09-02 13:50:43 -0700124 CHECK(StringToLinearSolverType(FLAGS_linear_solver,
125 &options->linear_solver_type));
126 CHECK(StringToPreconditionerType(FLAGS_preconditioner,
127 &options->preconditioner_type));
128 CHECK(StringToSparseLinearAlgebraLibraryType(
129 FLAGS_sparse_linear_algebra_library,
130 &options->sparse_linear_algebra_library));
Keir Mierle8ebb0732012-04-30 23:09:08 -0700131 options->num_linear_solver_threads = FLAGS_num_threads;
132}
133
134void SetOrdering(BALProblem* bal_problem, Solver::Options* options) {
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700135 const int num_points = bal_problem->num_points();
136 const int point_block_size = bal_problem->point_block_size();
137 double* points = bal_problem->mutable_points();
138
139 const int num_cameras = bal_problem->num_cameras();
140 const int camera_block_size = bal_problem->camera_block_size();
141 double* cameras = bal_problem->mutable_cameras();
142
Sameer Agarwal7a3c43b2012-06-05 23:10:59 -0700143 options->use_block_amd = FLAGS_use_block_amd;
Sameer Agarwal7a3c43b2012-06-05 23:10:59 -0700144
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700145 if (options->use_inner_iterations) {
146 if (FLAGS_blocks_for_inner_iterations == "cameras") {
147 LOG(INFO) << "Camera blocks for inner iterations";
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700148 options->inner_iteration_ordering = new ParameterBlockOrdering;
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700149 for (int i = 0; i < num_cameras; ++i) {
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700150 options->inner_iteration_ordering->AddElementToGroup(cameras + camera_block_size * i, 0);
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700151 }
152 } else if (FLAGS_blocks_for_inner_iterations == "points") {
153 LOG(INFO) << "Point blocks for inner iterations";
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700154 options->inner_iteration_ordering = new ParameterBlockOrdering;
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700155 for (int i = 0; i < num_points; ++i) {
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700156 options->inner_iteration_ordering->AddElementToGroup(points + point_block_size * i, 0);
157 }
158 } else if (FLAGS_blocks_for_inner_iterations == "cameras,points") {
159 LOG(INFO) << "Camera followed by point blocks for inner iterations";
160 options->inner_iteration_ordering = new ParameterBlockOrdering;
161 for (int i = 0; i < num_cameras; ++i) {
162 options->inner_iteration_ordering->AddElementToGroup(cameras + camera_block_size * i, 0);
163 }
164 for (int i = 0; i < num_points; ++i) {
165 options->inner_iteration_ordering->AddElementToGroup(points + point_block_size * i, 1);
166 }
167 } else if (FLAGS_blocks_for_inner_iterations == "points,cameras") {
168 LOG(INFO) << "Point followed by camera blocks for inner iterations";
169 options->inner_iteration_ordering = new ParameterBlockOrdering;
170 for (int i = 0; i < num_cameras; ++i) {
171 options->inner_iteration_ordering->AddElementToGroup(cameras + camera_block_size * i, 1);
172 }
173 for (int i = 0; i < num_points; ++i) {
174 options->inner_iteration_ordering->AddElementToGroup(points + point_block_size * i, 0);
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700175 }
176 } else if (FLAGS_blocks_for_inner_iterations == "automatic") {
177 LOG(INFO) << "Choosing automatic blocks for inner iterations";
178 } else {
179 LOG(FATAL) << "Unknown block type for inner iterations: "
180 << FLAGS_blocks_for_inner_iterations;
181 }
182 }
183
Keir Mierle8ebb0732012-04-30 23:09:08 -0700184 // Bundle adjustment problems have a sparsity structure that makes
185 // them amenable to more specialized and much more efficient
186 // solution strategies. The SPARSE_SCHUR, DENSE_SCHUR and
187 // ITERATIVE_SCHUR solvers make use of this specialized
Sameer Agarwal65625f72012-09-17 12:06:57 -0700188 // structure.
Keir Mierle8ebb0732012-04-30 23:09:08 -0700189 //
190 // This can either be done by specifying Options::ordering_type =
191 // ceres::SCHUR, in which case Ceres will automatically determine
192 // the right ParameterBlock ordering, or by manually specifying a
193 // suitable ordering vector and defining
194 // Options::num_eliminate_blocks.
Sameer Agarwal65625f72012-09-17 12:06:57 -0700195 if (FLAGS_ordering == "automatic") {
Keir Mierle8ebb0732012-04-30 23:09:08 -0700196 return;
197 }
198
Sameer Agarwal2c94eed2012-10-01 16:34:37 -0700199 ceres::ParameterBlockOrdering* ordering =
200 new ceres::ParameterBlockOrdering;
Sameer Agarwal91c9bfe2012-09-10 17:41:38 -0700201
Keir Mierle8ebb0732012-04-30 23:09:08 -0700202 // The points come before the cameras.
203 for (int i = 0; i < num_points; ++i) {
Sameer Agarwal2c94eed2012-10-01 16:34:37 -0700204 ordering->AddElementToGroup(points + point_block_size * i, 0);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700205 }
206
207 for (int i = 0; i < num_cameras; ++i) {
208 // When using axis-angle, there is a single parameter block for
209 // the entire camera.
Sameer Agarwal2c94eed2012-10-01 16:34:37 -0700210 ordering->AddElementToGroup(cameras + camera_block_size * i, 1);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700211 // If quaternions are used, there are two blocks, so add the
212 // second block to the ordering.
213 if (FLAGS_use_quaternions) {
Sameer Agarwal2c94eed2012-10-01 16:34:37 -0700214 ordering->AddElementToGroup(cameras + camera_block_size * i + 4, 1);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700215 }
216 }
217
Sameer Agarwal68b32a92012-10-06 23:10:51 -0700218 options->linear_solver_ordering = ordering;
Keir Mierle8ebb0732012-04-30 23:09:08 -0700219}
220
221void SetMinimizerOptions(Solver::Options* options) {
222 options->max_num_iterations = FLAGS_num_iterations;
223 options->minimizer_progress_to_stdout = true;
224 options->num_threads = FLAGS_num_threads;
Keir Mierlef7898fb2012-05-05 20:55:08 -0700225 options->eta = FLAGS_eta;
Sameer Agarwalfa015192012-06-11 14:21:42 -0700226 options->max_solver_time_in_seconds = FLAGS_max_solver_time;
Sameer Agarwala8f87d72012-08-08 10:38:31 -0700227 options->use_nonmonotonic_steps = FLAGS_nonmonotonic_steps;
Sameer Agarwalcbae8562012-09-02 13:50:43 -0700228 CHECK(StringToTrustRegionStrategyType(FLAGS_trust_region_strategy,
229 &options->trust_region_strategy_type));
230 CHECK(StringToDoglegType(FLAGS_dogleg, &options->dogleg_type));
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700231 options->use_inner_iterations = FLAGS_inner_iterations;
Keir Mierle8ebb0732012-04-30 23:09:08 -0700232}
233
234void SetSolverOptionsFromFlags(BALProblem* bal_problem,
235 Solver::Options* options) {
Sameer Agarwalaa9a83c2012-05-29 17:40:17 -0700236 SetMinimizerOptions(options);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700237 SetLinearSolver(options);
238 SetOrdering(bal_problem, options);
Keir Mierle8ebb0732012-04-30 23:09:08 -0700239}
240
241void BuildProblem(BALProblem* bal_problem, Problem* problem) {
242 const int point_block_size = bal_problem->point_block_size();
243 const int camera_block_size = bal_problem->camera_block_size();
244 double* points = bal_problem->mutable_points();
245 double* cameras = bal_problem->mutable_cameras();
246
247 // Observations is 2*num_observations long array observations =
248 // [u_1, u_2, ... , u_n], where each u_i is two dimensional, the x
249 // and y positions of the observation.
250 const double* observations = bal_problem->observations();
251
252 for (int i = 0; i < bal_problem->num_observations(); ++i) {
253 CostFunction* cost_function;
254 // Each Residual block takes a point and a camera as input and
255 // outputs a 2 dimensional residual.
256 if (FLAGS_use_quaternions) {
257 cost_function = new AutoDiffCostFunction<
Sameer Agarwal5476df52012-08-09 21:46:19 -0700258 SnavelyReprojectionErrorWithQuaternions, 2, 4, 6, 3>(
259 new SnavelyReprojectionErrorWithQuaternions(
Keir Mierle8ebb0732012-04-30 23:09:08 -0700260 observations[2 * i + 0],
261 observations[2 * i + 1]));
262 } else {
263 cost_function =
264 new AutoDiffCostFunction<SnavelyReprojectionError, 2, 9, 3>(
265 new SnavelyReprojectionError(observations[2 * i + 0],
266 observations[2 * i + 1]));
267 }
268
269 // If enabled use Huber's loss function.
270 LossFunction* loss_function = FLAGS_robustify ? new HuberLoss(1.0) : NULL;
271
272 // Each observation correponds to a pair of a camera and a point
273 // which are identified by camera_index()[i] and point_index()[i]
274 // respectively.
275 double* camera =
276 cameras + camera_block_size * bal_problem->camera_index()[i];
277 double* point = points + point_block_size * bal_problem->point_index()[i];
278
279 if (FLAGS_use_quaternions) {
280 // When using quaternions, we split the camera into two
281 // parameter blocks. One of size 4 for the quaternion and the
282 // other of size 6 containing the translation, focal length and
283 // the radial distortion parameters.
284 problem->AddResidualBlock(cost_function,
285 loss_function,
286 camera,
287 camera + 4,
288 point);
289 } else {
290 problem->AddResidualBlock(cost_function, loss_function, camera, point);
291 }
292 }
293
294 if (FLAGS_use_quaternions && FLAGS_use_local_parameterization) {
295 LocalParameterization* quaternion_parameterization =
296 new QuaternionParameterization;
297 for (int i = 0; i < bal_problem->num_cameras(); ++i) {
298 problem->SetParameterization(cameras + camera_block_size * i,
299 quaternion_parameterization);
300 }
301 }
302}
303
304void SolveProblem(const char* filename) {
305 BALProblem bal_problem(filename, FLAGS_use_quaternions);
306 Problem problem;
Sameer Agarwal5476df52012-08-09 21:46:19 -0700307
308 SetRandomState(FLAGS_random_seed);
Sameer Agarwal36a33092012-08-10 19:52:09 -0700309 bal_problem.Normalize();
Sameer Agarwal5476df52012-08-09 21:46:19 -0700310 bal_problem.Perturb(FLAGS_rotation_sigma,
311 FLAGS_translation_sigma,
312 FLAGS_point_sigma);
313
Keir Mierle8ebb0732012-04-30 23:09:08 -0700314 BuildProblem(&bal_problem, &problem);
315 Solver::Options options;
316 SetSolverOptionsFromFlags(&bal_problem, &options);
Sameer Agarwal1b7f3b52012-08-09 21:46:19 -0700317 options.solver_log = FLAGS_solver_log;
Sameer Agarwal9123e2f2012-09-18 21:49:06 -0700318 options.gradient_tolerance = 1e-16;
319 options.function_tolerance = 1e-16;
Keir Mierle8ebb0732012-04-30 23:09:08 -0700320 Solver::Summary summary;
321 Solve(options, &problem, &summary);
322 std::cout << summary.FullReport() << "\n";
323}
324
325} // namespace examples
326} // namespace ceres
327
328int main(int argc, char** argv) {
329 google::ParseCommandLineFlags(&argc, &argv, true);
330 google::InitGoogleLogging(argv[0]);
331 if (FLAGS_input.empty()) {
332 LOG(ERROR) << "Usage: bundle_adjustment_example --input=bal_problem";
333 return 1;
334 }
335
336 CHECK(FLAGS_use_quaternions || !FLAGS_use_local_parameterization)
337 << "--use_local_parameterization can only be used with "
338 << "--use_quaternions.";
339 ceres::examples::SolveProblem(FLAGS_input.c_str());
340 return 0;
341}