87 lines
3.0 KiB
C++
87 lines
3.0 KiB
C++
/*
|
|
* Copyright 2016 The Cartographer Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef CARTOGRAPHER_MAPPING_3D_POSE_GRAPH_SPA_COST_FUNCTION_H_
|
|
#define CARTOGRAPHER_MAPPING_3D_POSE_GRAPH_SPA_COST_FUNCTION_H_
|
|
|
|
#include <array>
|
|
|
|
#include "Eigen/Core"
|
|
#include "Eigen/Geometry"
|
|
#include "cartographer/common/math.h"
|
|
#include "cartographer/mapping/pose_graph.h"
|
|
#include "cartographer/mapping/pose_graph/cost_helpers.h"
|
|
#include "cartographer/transform/rigid_transform.h"
|
|
#include "cartographer/transform/transform.h"
|
|
#include "ceres/ceres.h"
|
|
#include "ceres/jet.h"
|
|
|
|
namespace cartographer {
|
|
namespace mapping_3d {
|
|
namespace pose_graph {
|
|
|
|
class SpaCostFunction {
|
|
public:
|
|
using Constraint = mapping::PoseGraph::Constraint;
|
|
|
|
static ceres::CostFunction* CreateAutoDiffCostFunction(
|
|
const Constraint::Pose& pose) {
|
|
return new ceres::AutoDiffCostFunction<
|
|
SpaCostFunction, 6 /* residuals */, 4 /* rotation variables */,
|
|
3 /* translation variables */, 4 /* rotation variables */,
|
|
3 /* translation variables */>(new SpaCostFunction(pose));
|
|
}
|
|
|
|
template <typename T>
|
|
bool operator()(const T* const c_i_rotation, const T* const c_i_translation,
|
|
const T* const c_j_rotation, const T* const c_j_translation,
|
|
T* const e) const {
|
|
ComputeScaledError(pose_, c_i_rotation, c_i_translation, c_j_rotation,
|
|
c_j_translation, e);
|
|
return true;
|
|
}
|
|
|
|
// Computes the error scaled by 'translation_weight' and 'rotation_weight',
|
|
// storing it in 'e'.
|
|
template <typename T>
|
|
static void ComputeScaledError(const Constraint::Pose& pose,
|
|
const T* const c_i_rotation,
|
|
const T* const c_i_translation,
|
|
const T* const c_j_rotation,
|
|
const T* const c_j_translation, T* const e) {
|
|
const std::array<T, 6> e_ij = mapping::pose_graph::ComputeUnscaledError3d(
|
|
pose.zbar_ij, c_i_rotation, c_i_translation, c_j_rotation,
|
|
c_j_translation);
|
|
for (int ij : {0, 1, 2}) {
|
|
e[ij] = e_ij[ij] * T(pose.translation_weight);
|
|
}
|
|
for (int ij : {3, 4, 5}) {
|
|
e[ij] = e_ij[ij] * T(pose.rotation_weight);
|
|
}
|
|
}
|
|
|
|
private:
|
|
explicit SpaCostFunction(const Constraint::Pose& pose) : pose_(pose) {}
|
|
|
|
const Constraint::Pose pose_;
|
|
};
|
|
|
|
} // namespace pose_graph
|
|
} // namespace mapping_3d
|
|
} // namespace cartographer
|
|
|
|
#endif // CARTOGRAPHER_MAPPING_3D_POSE_GRAPH_SPA_COST_FUNCTION_H_
|