iteration_callback_example.cc 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. // Ceres Solver - A fast non-linear least squares minimizer
  2. // Copyright 2023 Google Inc. All rights reserved.
  3. // http://ceres-solver.org/
  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. // This example is a variant of curve_fitting.cc where we use an
  32. // IterationCallback to implement custom logging which prints out the values of
  33. // the parameter blocks as they evolve over the course of the optimization. This
  34. // also requires the use of Solver::Options::update_state_every_iteration.
  35. #include <iostream>
  36. #include "ceres/ceres.h"
  37. #include "glog/logging.h"
  38. // Data generated using the following octave code.
  39. // randn('seed', 23497);
  40. // m = 0.3;
  41. // c = 0.1;
  42. // x=[0:0.075:5];
  43. // y = exp(m * x + c);
  44. // noise = randn(size(x)) * 0.2;
  45. // y_observed = y + noise;
  46. // data = [x', y_observed'];
  47. const int kNumObservations = 67;
  48. // clang-format off
  49. const double data[] = {
  50. 0.000000e+00, 1.133898e+00,
  51. 7.500000e-02, 1.334902e+00,
  52. 1.500000e-01, 1.213546e+00,
  53. 2.250000e-01, 1.252016e+00,
  54. 3.000000e-01, 1.392265e+00,
  55. 3.750000e-01, 1.314458e+00,
  56. 4.500000e-01, 1.472541e+00,
  57. 5.250000e-01, 1.536218e+00,
  58. 6.000000e-01, 1.355679e+00,
  59. 6.750000e-01, 1.463566e+00,
  60. 7.500000e-01, 1.490201e+00,
  61. 8.250000e-01, 1.658699e+00,
  62. 9.000000e-01, 1.067574e+00,
  63. 9.750000e-01, 1.464629e+00,
  64. 1.050000e+00, 1.402653e+00,
  65. 1.125000e+00, 1.713141e+00,
  66. 1.200000e+00, 1.527021e+00,
  67. 1.275000e+00, 1.702632e+00,
  68. 1.350000e+00, 1.423899e+00,
  69. 1.425000e+00, 1.543078e+00,
  70. 1.500000e+00, 1.664015e+00,
  71. 1.575000e+00, 1.732484e+00,
  72. 1.650000e+00, 1.543296e+00,
  73. 1.725000e+00, 1.959523e+00,
  74. 1.800000e+00, 1.685132e+00,
  75. 1.875000e+00, 1.951791e+00,
  76. 1.950000e+00, 2.095346e+00,
  77. 2.025000e+00, 2.361460e+00,
  78. 2.100000e+00, 2.169119e+00,
  79. 2.175000e+00, 2.061745e+00,
  80. 2.250000e+00, 2.178641e+00,
  81. 2.325000e+00, 2.104346e+00,
  82. 2.400000e+00, 2.584470e+00,
  83. 2.475000e+00, 1.914158e+00,
  84. 2.550000e+00, 2.368375e+00,
  85. 2.625000e+00, 2.686125e+00,
  86. 2.700000e+00, 2.712395e+00,
  87. 2.775000e+00, 2.499511e+00,
  88. 2.850000e+00, 2.558897e+00,
  89. 2.925000e+00, 2.309154e+00,
  90. 3.000000e+00, 2.869503e+00,
  91. 3.075000e+00, 3.116645e+00,
  92. 3.150000e+00, 3.094907e+00,
  93. 3.225000e+00, 2.471759e+00,
  94. 3.300000e+00, 3.017131e+00,
  95. 3.375000e+00, 3.232381e+00,
  96. 3.450000e+00, 2.944596e+00,
  97. 3.525000e+00, 3.385343e+00,
  98. 3.600000e+00, 3.199826e+00,
  99. 3.675000e+00, 3.423039e+00,
  100. 3.750000e+00, 3.621552e+00,
  101. 3.825000e+00, 3.559255e+00,
  102. 3.900000e+00, 3.530713e+00,
  103. 3.975000e+00, 3.561766e+00,
  104. 4.050000e+00, 3.544574e+00,
  105. 4.125000e+00, 3.867945e+00,
  106. 4.200000e+00, 4.049776e+00,
  107. 4.275000e+00, 3.885601e+00,
  108. 4.350000e+00, 4.110505e+00,
  109. 4.425000e+00, 4.345320e+00,
  110. 4.500000e+00, 4.161241e+00,
  111. 4.575000e+00, 4.363407e+00,
  112. 4.650000e+00, 4.161576e+00,
  113. 4.725000e+00, 4.619728e+00,
  114. 4.800000e+00, 4.737410e+00,
  115. 4.875000e+00, 4.727863e+00,
  116. 4.950000e+00, 4.669206e+00,
  117. };
  118. // clang-format on
  119. struct ExponentialResidual {
  120. ExponentialResidual(double x, double y) : x(x), y(y) {}
  121. template <typename T>
  122. bool operator()(const T* const m, const T* const c, T* residual) const {
  123. residual[0] = y - exp(m[0] * x + c[0]);
  124. return true;
  125. }
  126. private:
  127. const double x;
  128. const double y;
  129. };
  130. // MyIterationCallback prints the iteration number, the cost and the value of
  131. // the parameter blocks every iteration.
  132. class MyIterationCallback : public ceres::IterationCallback {
  133. public:
  134. MyIterationCallback(const double* m, const double* c) : m_(m), c_(c) {}
  135. ~MyIterationCallback() override = default;
  136. ceres::CallbackReturnType operator()(
  137. const ceres::IterationSummary& summary) final {
  138. std::cout << "Iteration: " << summary.iteration << " cost: " << summary.cost
  139. << " m: " << *m_ << " c: " << *c_ << std::endl;
  140. return ceres::SOLVER_CONTINUE;
  141. }
  142. private:
  143. const double* m_ = nullptr;
  144. const double* c_ = nullptr;
  145. };
  146. int main(int argc, char** argv) {
  147. google::InitGoogleLogging(argv[0]);
  148. const double initial_m = 0.0;
  149. const double initial_c = 0.0;
  150. double m = initial_m;
  151. double c = initial_c;
  152. ceres::Problem problem;
  153. for (int i = 0; i < kNumObservations; ++i) {
  154. problem.AddResidualBlock(
  155. new ceres::AutoDiffCostFunction<ExponentialResidual, 1, 1, 1>(
  156. new ExponentialResidual(data[2 * i], data[2 * i + 1])),
  157. nullptr,
  158. &m,
  159. &c);
  160. }
  161. ceres::Solver::Options options;
  162. options.max_num_iterations = 25;
  163. options.linear_solver_type = ceres::DENSE_QR;
  164. // Turn off the default logging from Ceres so that it does not interfere with
  165. // MyIterationCallback.
  166. options.minimizer_progress_to_stdout = false;
  167. MyIterationCallback callback(&m, &c);
  168. options.callbacks.push_back(&callback);
  169. // Tell Ceres to update the value of the parameter blocks on each each
  170. // iteration (successful or not) so that MyIterationCallback will be able to
  171. // see them when called.
  172. options.update_state_every_iteration = true;
  173. ceres::Solver::Summary summary;
  174. ceres::Solve(options, &problem, &summary);
  175. std::cout << summary.BriefReport() << "\n";
  176. std::cout << "Initial m: " << initial_m << " c: " << initial_c << "\n";
  177. std::cout << "Final m: " << m << " c: " << c << "\n";
  178. return 0;
  179. }