fields_of_experts.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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: strandmark@google.com (Petter Strandmark)
  30. //
  31. // Class for loading the data required for describing a Fields of Experts (FoE)
  32. // model. The Fields of Experts regularization consists of terms of the type
  33. //
  34. // alpha * log(1 + (1/2)*sum(F .* X)^2),
  35. //
  36. // where F is a d-by-d image patch and alpha is a constant. This is implemented
  37. // by a FieldsOfExpertsSum object which represents the dot product between the
  38. // image patches and a FieldsOfExpertsLoss which implements the log(1 + (1/2)s)
  39. // part.
  40. //
  41. // [1] S. Roth and M.J. Black. "Fields of Experts." International Journal of
  42. // Computer Vision, 82(2):205--229, 2009.
  43. #ifndef CERES_EXAMPLES_FIELDS_OF_EXPERTS_H_
  44. #define CERES_EXAMPLES_FIELDS_OF_EXPERTS_H_
  45. #include <iostream>
  46. #include <vector>
  47. #include "ceres/cost_function.h"
  48. #include "ceres/loss_function.h"
  49. #include "ceres/sized_cost_function.h"
  50. #include "pgm_image.h"
  51. namespace ceres::examples {
  52. // One sum in the FoE regularizer. This is a dot product between a filter and an
  53. // image patch. It simply calculates the dot product between the filter
  54. // coefficients given in the constructor and the scalar parameters passed to it.
  55. class FieldsOfExpertsCost : public ceres::CostFunction {
  56. public:
  57. explicit FieldsOfExpertsCost(const std::vector<double>& filter);
  58. // The number of scalar parameters passed to Evaluate must equal the number of
  59. // filter coefficients passed to the constructor.
  60. bool Evaluate(double const* const* parameters,
  61. double* residuals,
  62. double** jacobians) const override;
  63. private:
  64. const std::vector<double>& filter_;
  65. };
  66. // The loss function used to build the correct regularization. See above.
  67. //
  68. // f(x) = alpha_i * log(1 + (1/2)s)
  69. //
  70. class FieldsOfExpertsLoss : public ceres::LossFunction {
  71. public:
  72. explicit FieldsOfExpertsLoss(double alpha) : alpha_(alpha) {}
  73. void Evaluate(double, double*) const override;
  74. private:
  75. const double alpha_;
  76. };
  77. // This class loads a set of filters and coefficients from file. Then the users
  78. // obtains the correct loss and cost functions through NewCostFunction and
  79. // NewLossFunction.
  80. class FieldsOfExperts {
  81. public:
  82. // Creates an empty object with size() == 0.
  83. FieldsOfExperts();
  84. // Attempts to load filters from a file. If unsuccessful it returns false and
  85. // sets size() == 0.
  86. bool LoadFromFile(const std::string& filename);
  87. // Side length of a square filter in this FoE. They are all of the same size.
  88. int Size() const { return size_; }
  89. // Total number of pixels the filter covers.
  90. int NumVariables() const { return size_ * size_; }
  91. // Number of filters used by the FoE.
  92. int NumFilters() const { return num_filters_; }
  93. // Creates a new cost function. The caller is responsible for deallocating the
  94. // memory. alpha_index specifies which filter is used in the cost function.
  95. ceres::CostFunction* NewCostFunction(int alpha_index) const;
  96. // Creates a new loss function. The caller is responsible for deallocating the
  97. // memory. alpha_index specifies which filter this loss function is for.
  98. ceres::LossFunction* NewLossFunction(int alpha_index) const;
  99. // Gets the delta pixel indices for all pixels in a patch.
  100. const std::vector<int>& GetXDeltaIndices() const { return x_delta_indices_; }
  101. const std::vector<int>& GetYDeltaIndices() const { return y_delta_indices_; }
  102. private:
  103. // The side length of a square filter.
  104. int size_;
  105. // The number of different filters used.
  106. int num_filters_;
  107. // Pixel offsets for all variables.
  108. std::vector<int> x_delta_indices_, y_delta_indices_;
  109. // The coefficients in front of each term.
  110. std::vector<double> alpha_;
  111. // The filters used for the dot product with image patches.
  112. std::vector<std::vector<double>> filters_;
  113. };
  114. } // namespace ceres::examples
  115. #endif // CERES_EXAMPLES_FIELDS_OF_EXPERTS_H_