Home
last modified time | relevance | path

Searched refs:TolerantLoss (Results 1 – 5 of 5) sorted by relevance

/external/ceres-solver/internal/ceres/
Dloss_function_test.cc114 TEST(LossFunction, TolerantLoss) { in TEST() argument
115 AssertLossFunctionIsValid(TolerantLoss(0.7, 0.4), 0.357); in TEST()
116 AssertLossFunctionIsValid(TolerantLoss(0.7, 0.4), 1.792); in TEST()
117 AssertLossFunctionIsValid(TolerantLoss(0.7, 0.4), 55.5); in TEST()
118 AssertLossFunctionIsValid(TolerantLoss(1.3, 0.1), 0.357); in TEST()
119 AssertLossFunctionIsValid(TolerantLoss(1.3, 0.1), 1.792); in TEST()
120 AssertLossFunctionIsValid(TolerantLoss(1.3, 0.1), 55.5); in TEST()
123 TolerantLoss(0.7, 0.4).Evaluate(0.0, rho); in TEST()
127 AssertLossFunctionIsValid(TolerantLoss(20.0, 1.0), 20.0 + 36.6); in TEST()
128 AssertLossFunctionIsValid(TolerantLoss(20.0, 1.0), 20.0 + 36.7); in TEST()
[all …]
Dloss_function.cc89 TolerantLoss::TolerantLoss(double a, double b) in TolerantLoss() function in ceres::TolerantLoss
97 void TolerantLoss::Evaluate(double s, double rho[3]) const { in Evaluate()
Dc_api.cc127 return new ceres::TolerantLoss(a, b); in ceres_create_tolerant_loss_function_data()
/external/ceres-solver/include/ceres/
Dloss_function.h268 class CERES_EXPORT TolerantLoss : public LossFunction {
270 explicit TolerantLoss(double a, double b);
/external/ceres-solver/docs/source/
Dmodeling.rst920 .. class:: TolerantLoss