Files
ceres-solver/internal/ceres/normal_prior_test.cc
T

119 lines
4.1 KiB
C++
Raw Normal View History

2012-04-30 23:09:08 -07:00
// Ceres Solver - A fast non-linear least squares minimizer
2023-09-19 15:29:34 -07:00
// Copyright 2023 Google Inc. All rights reserved.
// http://ceres-solver.org/
2012-04-30 23:09:08 -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)
#include "ceres/normal_prior.h"
2022-08-16 15:46:22 -07:00
#include <algorithm>
2012-04-30 23:09:08 -07:00
#include <cstddef>
#include <random>
2012-04-30 23:09:08 -07:00
#include "ceres/internal/eigen.h"
#include "gtest/gtest.h"
2012-04-30 23:09:08 -07:00
namespace ceres {
namespace internal {
TEST(NormalPriorTest, ResidualAtRandomPosition) {
std::mt19937 prng;
2022-08-08 20:16:51 -07:00
std::uniform_real_distribution<double> distribution(-1.0, 1.0);
auto randu = [&distribution, &prng] { return distribution(prng); };
2012-04-30 23:09:08 -07:00
for (int num_rows = 1; num_rows < 5; ++num_rows) {
for (int num_cols = 1; num_cols < 5; ++num_cols) {
Vector b(num_cols);
b.setRandom();
2012-04-30 23:09:08 -07:00
Matrix A(num_rows, num_cols);
A.setRandom();
2012-04-30 23:09:08 -07:00
2022-02-20 02:22:17 +01:00
auto* x = new double[num_cols];
std::generate_n(x, num_cols, randu);
2012-04-30 23:09:08 -07:00
2022-02-20 02:22:17 +01:00
auto* jacobian = new double[num_rows * num_cols];
2012-04-30 23:09:08 -07:00
Vector residuals(num_rows);
NormalPrior prior(A, b);
prior.Evaluate(&x, residuals.data(), &jacobian);
// Compare the norm of the residual
double residual_diff_norm =
(residuals - A * (VectorRef(x, num_cols) - b)).squaredNorm();
EXPECT_NEAR(residual_diff_norm, 0, 1e-10);
// Compare the jacobians
MatrixRef J(jacobian, num_rows, num_cols);
double jacobian_diff_norm = (J - A).norm();
EXPECT_NEAR(jacobian_diff_norm, 0.0, 1e-10);
delete[] x;
delete[] jacobian;
2012-04-30 23:09:08 -07:00
}
}
}
TEST(NormalPriorTest, ResidualAtRandomPositionNullJacobians) {
std::mt19937 prng;
2022-08-08 20:16:51 -07:00
std::uniform_real_distribution<double> distribution(-1.0, 1.0);
auto randu = [&distribution, &prng] { return distribution(prng); };
2012-04-30 23:09:08 -07:00
for (int num_rows = 1; num_rows < 5; ++num_rows) {
for (int num_cols = 1; num_cols < 5; ++num_cols) {
Vector b(num_cols);
b.setRandom();
2012-04-30 23:09:08 -07:00
Matrix A(num_rows, num_cols);
A.setRandom();
2012-04-30 23:09:08 -07:00
2022-02-20 02:22:17 +01:00
auto* x = new double[num_cols];
std::generate_n(x, num_cols, randu);
2012-04-30 23:09:08 -07:00
double* jacobians[1];
2022-02-02 13:17:29 -08:00
jacobians[0] = nullptr;
2012-04-30 23:09:08 -07:00
Vector residuals(num_rows);
NormalPrior prior(A, b);
prior.Evaluate(&x, residuals.data(), jacobians);
// Compare the norm of the residual
double residual_diff_norm =
(residuals - A * (VectorRef(x, num_cols) - b)).squaredNorm();
EXPECT_NEAR(residual_diff_norm, 0, 1e-10);
2022-02-02 13:17:29 -08:00
prior.Evaluate(&x, residuals.data(), nullptr);
2012-04-30 23:09:08 -07:00
// Compare the norm of the residual
residual_diff_norm =
(residuals - A * (VectorRef(x, num_cols) - b)).squaredNorm();
EXPECT_NEAR(residual_diff_norm, 0, 1e-10);
delete[] x;
2012-04-30 23:09:08 -07:00
}
}
}
} // namespace internal
} // namespace ceres