HomeSort by relevance Sort by last modified time
    Searched refs:CauchyLoss (Results 1 - 6 of 6) sorted by null

  /external/ceres-solver/internal/ceres/
loss_function_test.cc 100 TEST(LossFunction, CauchyLoss) {
101 AssertLossFunctionIsValid(CauchyLoss(0.7), 0.357);
102 AssertLossFunctionIsValid(CauchyLoss(0.7), 1.792);
103 AssertLossFunctionIsValid(CauchyLoss(1.3), 0.357);
104 AssertLossFunctionIsValid(CauchyLoss(1.3), 1.792);
136 CauchyLoss g(1.3);
142 CauchyLoss f(0.7);
171 ScaledLoss scaled_loss(new CauchyLoss(1.3), 10, TAKE_OWNERSHIP);
c_api.cc 121 return new ceres::CauchyLoss(a);
loss_function.cc 71 void CauchyLoss::Evaluate(double s, double rho[3]) const {
  /external/ceres-solver/examples/
circle_fit.cc 61 using ceres::CauchyLoss;
133 loss = new CauchyLoss(FLAGS_robust_threshold);
robust_curve_fitting.cc 118 using ceres::CauchyLoss;
  /external/ceres-solver/include/ceres/
loss_function.h 119 // TrivialLoss >= HuberLoss >= SoftLOneLoss >= CauchyLoss
207 class CauchyLoss : public LossFunction {
209 explicit CauchyLoss(double a) : b_(a * a), c_(1 / b_) { }

Completed in 572 milliseconds