pcl::Correspondence correspondence(i, best_index, best_distance);
时间: 2024-04-01 19:31:26 浏览: 75
pcl:点云库(PCL)
这是一行基于 PCL(Point Cloud Library)的 C++ 代码,其中创建了一个名为 `correspondence` 的 `pcl::Correspondence` 对象,该对象的构造函数接受三个参数:`i`、`best_index` 和 `best_distance`。根据上下文来看,这行代码可能是在为某个点云中的某个点寻找最佳匹配点云中的最佳匹配点,并将匹配的结果保存在 `correspondence` 对象中。
阅读全文