KCP
An efficient and effective 3D laser scan matching
|
Abstract class for point cloud registration solvers. More...
#include <kcp/solver.hpp>
Public Member Functions | |
AbstractSolver () | |
Constructor. | |
virtual void | solve (const Eigen::MatrixX3d &src, const Eigen::MatrixX3d &dst, const Eigen::MatrixXd &src_feature, const Eigen::MatrixXd &dst_feature)=0 |
Abstract function to trigger a registration method. More... | |
virtual const Eigen::Matrix4d & | get_solution () const |
Get the solution of the registration. More... | |
Protected Attributes | |
Eigen::Matrix4d | solution |
The estimation result. | |
Abstract class for point cloud registration solvers.
|
inlinevirtual |
Get the solution of the registration.
|
pure virtual |
Abstract function to trigger a registration method.
src | The source point cloud. |
dst | The target point cloud. |
src_feature | The source feature cloud. |
dst_feature | The target feature cloud. |
Implemented in kcp::KCP.