read (file_name, blob, cloud.sensor_origin_, cloud.sensor_orientation_, pcd_version, offset) 这个函数调用哪个 read (const std::string &file_name, pcl::PCLPointCloud2 &cloud, const int offset = 0);还是 read (const std::string &file_name, pcl::PCLPointCloud2 &cloud, Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &pcd_version, const int offset = 0) override;
时间: 2024-03-26 18:34:39 浏览: 85
read()函数调用过程剖析
`read()` 函数的重载形式有多个,但是您提供的两个函数签名中,都包含了 `pcl::PCLPointCloud2` 类型的参数 `cloud`。因此,可以肯定的是,`read(file_name, blob, cloud.sensor_origin_, cloud.sensor_orientation_, pcd_version, offset)` 调用的是下面这个函数:
```cpp
read(const std::string& file_name, pcl::PCLPointCloud2& cloud, const int offset = 0);
```
这个函数不仅读取了点云数据,还可以将读取到的 sensor origin 和 orientation 存储到 `cloud.sensor_origin_` 和 `cloud.sensor_orientation_` 中。
需要注意的是,`read(const std::string& file_name, pcl::PCLPointCloud2& cloud, Eigen::Vector4f& origin, Eigen::Quaternionf& orientation, int& pcd_version, const int offset = 0)` 是另一个重载形式,它不仅读取了点云数据,还可以将读取到的 sensor origin、orientation 和 PCD 版本号存储到输入参数中。但是,它的参数列表与前面的函数不同,因此不能调用前面的函数。
阅读全文