Open3D (C++ API)
0.19.0
|
#include <TransformationEstimation.h>
Data Fields | |
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.
|
inline |
Default Constructor.
|
inlineoverride |
|
inlineexplicit |
Constructor that takes as input a RobustKernel.
kernel | Any of the implemented statistical robust kernel for outlier rejection. |
|
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 open3d::pipelines::registration::TransformationEstimation.
|
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 open3d::pipelines::registration::TransformationEstimation.
|
inlineoverridevirtual |
|
overridevirtual |
Initialize the source and target point cloud for the transformation estimation.
source | Source point cloud. |
target | Target point cloud. |
max_correspondence_distance | Maximum correspondence distance. |
Implements open3d::pipelines::registration::TransformationEstimation.
std::shared_ptr<RobustKernel> open3d::pipelines::registration::TransformationEstimationPointToPlane::kernel_ = std::make_shared<L2Loss>() |
shared_ptr to an Abstract RobustKernel that could mutate at runtime.