![]() |
ACloudViewer
3.9.4
A Modern Library for 3D Data Processing
|
#include <TransformationEstimation.h>


Public Member Functions | |
| TransformationEstimationPointToPlane () | |
| Default Constructor. More... | |
| ~TransformationEstimationPointToPlane () override | |
| TransformationEstimationPointToPlane (std::shared_ptr< RobustKernel > kernel) | |
| Constructor that takes as input a RobustKernel. More... | |
| TransformationEstimationType | GetTransformationEstimationType () const override |
| double | ComputeRMSE (const ccPointCloud &source, const ccPointCloud &target, const CorrespondenceSet &corres) const override |
| Eigen::Matrix4d | ComputeTransformation (const ccPointCloud &source, const ccPointCloud &target, const CorrespondenceSet &corres) const override |
Public Member Functions inherited from cloudViewer::pipelines::registration::TransformationEstimation | |
| TransformationEstimation () | |
| Default Constructor. More... | |
| virtual | ~TransformationEstimation () |
Public Attributes | |
| std::shared_ptr< RobustKernel > | kernel_ = std::make_shared<L2Loss>() |
| shared_ptr to an Abstract RobustKernel that could mutate at runtime. More... | |
Class to estimate a transformation for point to plane distance.
Definition at line 111 of file TransformationEstimation.h.
|
inline |
Default Constructor.
Definition at line 114 of file TransformationEstimation.h.
|
inlineoverride |
Definition at line 115 of file TransformationEstimation.h.
|
inlineexplicit |
Constructor that takes as input a RobustKernel.
| kernel | Any of the implemented statistical robust kernel for outlier rejection. |
Definition at line 119 of file TransformationEstimation.h.
|
overridevirtual |
Compute RMSE between source and target points cloud given correspondences.
| source | Source point cloud. |
| target | Target point cloud. |
| corres | Correspondence set between source and target point cloud. |
Implements cloudViewer::pipelines::registration::TransformationEstimation.
Definition at line 46 of file TransformationEstimation.cpp.
References dot(), ccPointCloud::getEigenNormal(), cloudViewer::PointCloudTpl< T >::getEigenPoint(), and ccPointCloud::hasNormals().
|
overridevirtual |
Compute transformation from source to target point cloud given correspondences.
| source | Source point cloud. |
| target | Target point cloud. |
| corres | Correspondence set between source and target point cloud. |
Implements cloudViewer::pipelines::registration::TransformationEstimation.
Definition at line 60 of file TransformationEstimation.cpp.
References cloudViewer::utility::ComputeJTJandJTr(), dot(), ccPointCloud::getEigenNormal(), cloudViewer::PointCloudTpl< T >::getEigenPoint(), ccPointCloud::hasNormals(), kernel_, and cloudViewer::utility::SolveJacobianSystemAndObtainExtrinsicMatrix().
|
inlineoverridevirtual |
Implements cloudViewer::pipelines::registration::TransformationEstimation.
Definition at line 124 of file TransformationEstimation.h.
| std::shared_ptr<RobustKernel> cloudViewer::pipelines::registration::TransformationEstimationPointToPlane::kernel_ = std::make_shared<L2Loss>() |
shared_ptr to an Abstract RobustKernel that could mutate at runtime.
Definition at line 138 of file TransformationEstimation.h.
Referenced by ComputeTransformation(), and cloudViewer::pipelines::registration::pybind_registration_classes().