OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CauchyLoss
(Results
1 - 7
of
7
) 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);
robot_pose_mle.cc
140
using ceres::
CauchyLoss
;
robust_curve_fitting.cc
118
using ceres::
CauchyLoss
;
/external/ceres-solver/include/ceres/
loss_function.h
120
// TrivialLoss >= HuberLoss >= SoftLOneLoss >=
CauchyLoss
208
class CERES_EXPORT
CauchyLoss
: public LossFunction {
210
explicit
CauchyLoss
(double a) : b_(a * a), c_(1 / b_) { }
Completed in 114 milliseconds