File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
registration/include/pcl/registration Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ namespace pcl {
5656 * The solver relies on Welsch reweighting for robustness and optional Anderson
5757 * acceleration for faster convergence.
5858 *
59+ * \code
60+ * pcl::FastRobustIterativeClosestPoint<PointT, PointT> reg;
61+ * reg.setInputSource (src); // src and tgt are clouds that must be created before
62+ * reg.setInputTarget (tgt);
63+ * reg.setMaximumIterations (60); // parameters may have to be tuned, depending on the point clouds
64+ * reg.setTransformationEpsilon (1e-8);
65+ * pcl::PointCloud<PointT> output;
66+ * reg.align (output);
67+ * \endcode
5968 * \ingroup registration
6069 */
6170template <typename PointSource, typename PointTarget, typename Scalar = float >
You can’t perform that action at this time.
0 commit comments