We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 397b7f3 commit b45c4eaCopy full SHA for b45c4ea
1 file changed
registration/include/pcl/registration/fricp.h
@@ -56,6 +56,15 @@ namespace pcl {
56
* The solver relies on Welsch reweighting for robustness and optional Anderson
57
* acceleration for faster convergence.
58
*
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
68
* \ingroup registration
69
*/
70
template <typename PointSource, typename PointTarget, typename Scalar = float>
0 commit comments