|
Point Cloud Library (PCL)
1.11.1-dev
|
BFGS stands for Broyden–Fletcher–Goldfarb–Shanno (BFGS) method for solving unconstrained nonlinear optimization problems. More...
#include <pcl/registration/bfgs.h>
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 () |
| BFGSSpace::Status | testGradient (Scalar) |
| 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: http://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 351 of file bfgs.h.
References BFGSSpace::Success.
| BFGSSpace::Status BFGS< FunctorType >::minimizeInit | ( | FVectorType & | x | ) |
Definition at line 363 of file bfgs.h.
References BFGSSpace::NotStarted.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget >::estimateRigidTransformationBFGS().
| BFGSSpace::Status BFGS< FunctorType >::minimizeOneStep | ( | FVectorType & | x | ) |
Definition at line 395 of file bfgs.h.
References pcl::B, BFGSSpace::NoProgress, and BFGSSpace::Success.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget >::estimateRigidTransformationBFGS().
|
inline |
Definition at line 166 of file bfgs.h.
References BFGS< FunctorType >::parameters.
| BFGSSpace::Status BFGS< FunctorType >::testGradient |
Definition at line 478 of file bfgs.h.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget >::estimateRigidTransformationBFGS().
|
inline |
Definition at line 164 of file bfgs.h.
References BFGS< FunctorType >::testGradient().
Referenced by BFGS< FunctorType >::testGradient().
| FVectorType BFGS< FunctorType >::gradient |
| Parameters BFGS< FunctorType >::parameters |
Definition at line 171 of file bfgs.h.
Referenced by pcl::GeneralizedIterativeClosestPoint< PointSource, PointTarget >::estimateRigidTransformationBFGS(), and BFGS< FunctorType >::resetParameters().