2012-09-18 21:49:06 -07:00
|
|
|
// Ceres Solver - A fast non-linear least squares minimizer
|
2015-03-17 22:30:16 -07:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
|
// http://ceres-solver.org/
|
2012-09-18 21:49:06 -07:00
|
|
|
//
|
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
|
//
|
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
|
// * Neither the name of Google Inc. nor the names of its contributors may be
|
|
|
|
|
// used to endorse or promote products derived from this software without
|
|
|
|
|
// specific prior written permission.
|
|
|
|
|
//
|
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
//
|
|
|
|
|
// Author: sameeragarwal@google.com (Sameer Agarwal)
|
|
|
|
|
|
2012-10-02 00:48:57 -07:00
|
|
|
#ifndef CERES_INTERNAL_COORDINATE_DESCENT_MINIMIZER_H_
|
|
|
|
|
#define CERES_INTERNAL_COORDINATE_DESCENT_MINIMIZER_H_
|
|
|
|
|
|
2013-06-24 17:50:56 -07:00
|
|
|
#include <string>
|
2013-02-20 01:39:03 -08:00
|
|
|
#include <vector>
|
|
|
|
|
|
2018-02-22 10:28:39 -08:00
|
|
|
#include "ceres/context_impl.h"
|
2012-10-02 00:48:57 -07:00
|
|
|
#include "ceres/evaluator.h"
|
2012-09-18 21:49:06 -07:00
|
|
|
#include "ceres/minimizer.h"
|
|
|
|
|
#include "ceres/problem_impl.h"
|
|
|
|
|
#include "ceres/solver.h"
|
|
|
|
|
|
|
|
|
|
namespace ceres {
|
|
|
|
|
namespace internal {
|
|
|
|
|
|
2014-05-29 15:20:20 -07:00
|
|
|
class Program;
|
2014-08-07 11:48:03 -07:00
|
|
|
class LinearSolver;
|
2014-05-29 15:20:20 -07:00
|
|
|
|
2012-10-02 00:48:57 -07:00
|
|
|
// Given a Program, and a ParameterBlockOrdering which partitions
|
|
|
|
|
// (non-exhaustively) the Hessian matrix into independent sets,
|
|
|
|
|
// perform coordinate descent on the parameter blocks in the
|
|
|
|
|
// ordering. The independent set structure allows for all parameter
|
|
|
|
|
// blocks in the same independent set to be optimized in parallel, and
|
|
|
|
|
// the order of the independent set determines the order in which the
|
|
|
|
|
// parameter block groups are optimized.
|
2012-09-18 21:49:06 -07:00
|
|
|
//
|
2012-10-02 00:48:57 -07:00
|
|
|
// The minimizer assumes that none of the parameter blocks in the
|
|
|
|
|
// program are constant.
|
2022-02-17 17:06:49 -08:00
|
|
|
class CERES_NO_EXPORT CoordinateDescentMinimizer final : public Minimizer {
|
2012-09-18 21:49:06 -07:00
|
|
|
public:
|
2018-02-22 10:28:39 -08:00
|
|
|
explicit CoordinateDescentMinimizer(ContextImpl* context);
|
|
|
|
|
|
2012-09-18 21:49:06 -07:00
|
|
|
bool Init(const Program& program,
|
|
|
|
|
const ProblemImpl::ParameterMap& parameter_map,
|
2012-10-02 00:48:57 -07:00
|
|
|
const ParameterBlockOrdering& ordering,
|
2015-01-07 15:10:46 -08:00
|
|
|
std::string* error);
|
2012-09-18 21:49:06 -07:00
|
|
|
|
|
|
|
|
// Minimizer interface.
|
2022-02-09 00:34:05 +01:00
|
|
|
~CoordinateDescentMinimizer() override;
|
2018-02-22 10:28:39 -08:00
|
|
|
|
2019-07-14 00:16:13 +02:00
|
|
|
void Minimize(const Minimizer::Options& options,
|
|
|
|
|
double* parameters,
|
|
|
|
|
Solver::Summary* summary) final;
|
2012-09-18 21:49:06 -07:00
|
|
|
|
2014-05-29 15:20:20 -07:00
|
|
|
// Verify that each group in the ordering forms an independent set.
|
|
|
|
|
static bool IsOrderingValid(const Program& program,
|
|
|
|
|
const ParameterBlockOrdering& ordering,
|
2015-01-07 15:10:46 -08:00
|
|
|
std::string* message);
|
2014-05-29 15:20:20 -07:00
|
|
|
|
|
|
|
|
// Find a recursive decomposition of the Hessian matrix as a set
|
|
|
|
|
// of independent sets of decreasing size and invert it. This
|
|
|
|
|
// seems to work better in practice, i.e., Cameras before
|
|
|
|
|
// points.
|
2022-02-02 13:17:29 -08:00
|
|
|
static std::shared_ptr<ParameterBlockOrdering> CreateOrdering(
|
|
|
|
|
const Program& program);
|
2014-05-29 15:20:20 -07:00
|
|
|
|
2012-09-18 21:49:06 -07:00
|
|
|
private:
|
2012-10-02 00:48:57 -07:00
|
|
|
void Solve(Program* program,
|
2012-10-05 10:06:27 -07:00
|
|
|
LinearSolver* linear_solver,
|
2012-10-02 00:48:57 -07:00
|
|
|
double* parameters,
|
|
|
|
|
Solver::Summary* summary);
|
|
|
|
|
|
2014-12-17 07:35:09 -08:00
|
|
|
std::vector<ParameterBlock*> parameter_blocks_;
|
2018-04-03 10:41:01 -07:00
|
|
|
std::vector<std::vector<ResidualBlock*>> residual_blocks_;
|
2012-10-02 00:48:57 -07:00
|
|
|
// The optimization is performed in rounds. In each round all the
|
|
|
|
|
// parameter blocks that form one independent set are optimized in
|
|
|
|
|
// parallel. This array, marks the boundaries of the independent
|
|
|
|
|
// sets in parameter_blocks_.
|
2014-12-17 07:35:09 -08:00
|
|
|
std::vector<int> independent_set_offsets_;
|
2012-09-18 21:49:06 -07:00
|
|
|
|
|
|
|
|
Evaluator::Options evaluator_options_;
|
2018-02-22 10:28:39 -08:00
|
|
|
|
|
|
|
|
ContextImpl* context_;
|
2012-09-18 21:49:06 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
} // namespace ceres
|
2012-10-02 00:48:57 -07:00
|
|
|
|
|
|
|
|
#endif // CERES_INTERNAL_COORDINATE_DESCENT_MINIMIZER_H_
|