|
Point Cloud Library (PCL)
1.15.1-dev
|
BFGS stands for Broyden–Fletcher–Goldfarb–Shanno (BFGS) method for solving unconstrained nonlinear optimization problems. More...
#include <pcl/registration/bfgs.h>
Collaboration diagram for BFGS< FunctorType >:Classes | |
| struct | Parameters |
Public Types | |
| using | Scalar = typename FunctorType::Scalar |
| using | FVectorType = typename FunctorType::VectorType |
| using | Index = Eigen::DenseIndex |
Public Member Functions | |
| BFGS (FunctorType &_functor) | |
| BFGSSpace::Status | minimize (FVectorType &x) |
| BFGSSpace::Status | minimizeInit (FVectorType &x) |
| BFGSSpace::Status | minimizeOneStep (FVectorType &x) |
| BFGSSpace::Status | testGradient () |
| void | resetParameters (void) |
Public Attributes | |
| Parameters | parameters |
| Scalar | f |
| FVectorType | gradient |
BFGS stands for Broyden–Fletcher–Goldfarb–Shanno (BFGS) method for solving unconstrained nonlinear optimization problems.
For further details please visit: https://en.wikipedia.org/wiki/BFGS_method The method provided here is almost similar to the one provided by GSL. It reproduces Fletcher's original algorithm in Practical Methods of Optimization algorithms : 2.6.2 and 2.6.4 and uses the same politics in GSL with cubic interpolation whenever it is possible else falls to quadratic interpolation for alpha parameter.
| using BFGS< FunctorType >::FVectorType = typename FunctorType::VectorType |
| BFGSSpace::Status BFGS< FunctorType >::minimize | ( | FVectorType & | x | ) |
Definition at line 349 of file bfgs.h.
References BFGSSpace::Success.
| BFGSSpace::Status BFGS< FunctorType >::minimizeInit | ( | FVectorType & | x | ) |
Definition at line 361 of file bfgs.h.
References BFGSSpace::NotStarted.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget, Scalar >::estimateRigidTransformationBFGS().
| BFGSSpace::Status BFGS< FunctorType >::minimizeOneStep | ( | FVectorType & | x | ) |
Definition at line 393 of file bfgs.h.
References pcl::B, BFGSSpace::NoProgress, and BFGSSpace::Success.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget, Scalar >::estimateRigidTransformationBFGS().
|
inline |
Definition at line 164 of file bfgs.h.
References BFGS< FunctorType >::parameters.
| BFGSSpace::Status BFGS< FunctorType >::testGradient |
Definition at line 476 of file bfgs.h.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget, Scalar >::estimateRigidTransformationBFGS().
| FVectorType BFGS< FunctorType >::gradient |
| Parameters BFGS< FunctorType >::parameters |
Definition at line 169 of file bfgs.h.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget, Scalar >::estimateRigidTransformationBFGS(), and BFGS< FunctorType >::resetParameters().