43 #include <pcl/common/utils.h>
44 #include <pcl/filters/voxel_grid_covariance.h>
45 #include <pcl/registration/registration.h>
49 #include <unsupported/Eigen/NonLinearOptimization>
65 template <
typename Po
intSource,
typename Po
intTarget,
typename Scalar =
float>
67 :
public Registration<PointSource, PointTarget, Scalar> {
94 shared_ptr<NormalDistributionsTransform<PointSource, PointTarget, Scalar>>;
96 shared_ptr<const NormalDistributionsTransform<PointSource, PointTarget, Scalar>>;
97 using Vector3 =
typename Eigen::Matrix<Scalar, 3, 1>;
99 using Affine3 =
typename Eigen::Transform<Scalar, 3, Eigen::Affine>;
188 "The method `getOulierRatio` has been renamed to "
189 "`getOutlierRatio`.")
207 "The method `setOulierRatio` has been renamed to "
208 "`setOutlierRatio`.")
232 "The method `getTransformationProbability` has been renamed to "
233 "`getTransformationLikelihood`.")
271 trans = Eigen::Translation<Scalar, 3>(x.head<3>().cast<Scalar>()) *
272 Eigen::AngleAxis<Scalar>(
static_cast<Scalar
>(x(3)), Vector3::UnitX()) *
273 Eigen::AngleAxis<Scalar>(
static_cast<Scalar
>(x(4)), Vector3::UnitY()) *
274 Eigen::AngleAxis<Scalar>(
static_cast<Scalar
>(x(5)), Vector3::UnitZ());
287 trans = _affine.matrix();
335 PCL_DEBUG(
"[pcl::%s::init] Computed voxel structure, got %zu voxels with valid "
336 "normal distributions.\n",
355 Eigen::Matrix<double, 6, 6>& hessian,
357 const Eigen::Matrix<double, 6, 1>& transform,
358 bool compute_hessian =
true);
375 Eigen::Matrix<double, 6, 6>& hessian,
376 const Eigen::Vector3d& x_trans,
377 const Eigen::Matrix3d& c_inv,
378 bool compute_hessian =
true)
const;
388 bool compute_hessian =
true);
421 const Eigen::Vector3d& x_trans,
422 const Eigen::Matrix3d& c_inv)
const;
455 Eigen::Matrix<double, 6, 1>& step_dir,
460 Eigen::Matrix<double, 6, 1>& score_gradient,
461 Eigen::Matrix<double, 6, 6>& hessian,
558 double a,
double f_a,
double f_0,
double g_0,
double mu = 1.e-4)
const
560 return f_a - f_0 - mu * g_0 * a;
578 return g_a - mu * g_0;
604 "`trans_probability_` has been renamed to `trans_likelihood_`.")
638 #include <pcl/registration/impl/ndt.hpp>
PointCloudConstPtr input_
The input point cloud dataset.
virtual void setInputCloud(const PointCloudConstPtr &cloud)
Provide a pointer to the input dataset.
Registration represents the base registration class for general purpose, ICP-like methods.
const std::string & getClassName() const
Abstract class get name method.
virtual void setInputTarget(const PointCloudTargetConstPtr &cloud)
Provide a pointer to the input target (e.g., the point cloud that we want to align the input source t...
int nr_iterations_
The number of iterations the internal optimization ran for (used internally).
Eigen::Matrix< Scalar, 4, 4 > Matrix4
double transformation_rotation_epsilon_
The maximum rotation difference between two consecutive transformations in order to consider converge...
PointCloudTargetConstPtr target_
The input point cloud dataset target.
void setMinPointPerVoxel(int min_points_per_voxel)
Set the minimum number of points required for a cell to be used (must be 3 or greater for covariance ...
void filter(PointCloud &output, bool searchable=false)
Filter cloud and initializes voxel structure.
const Leaf * LeafConstPtr
Const pointer to VoxelGridCovariance leaf structure.
PointCloudPtr getCentroids()
Get a pointcloud containing the voxel centroids.
void setLeafSize(const Eigen::Vector4f &leaf_size)
Set the voxel grid leaf size.
#define PCL_MAKE_ALIGNED_OPERATOR_NEW
Macro to signal a class requires a custom allocator.
Defines functions, macros and traits for allocating and using memory.
Defines all the PCL and non-PCL macros used.
#define PCL_DEPRECATED(Major, Minor, Message)
macro for compatibility across compilers and help remove old deprecated items for the Major....
shared_ptr< ::pcl::PointIndices > Ptr
shared_ptr< const ::pcl::PointIndices > ConstPtr