如何使用PCL

时间:2015-06-10 18:16:28

标签: c++ point-cloud-library point-clouds

我可以使用这个程序读取.pcd数据。

#include <iostream>
#include <pcl/io/pcd_io.h>
#include <pcl/point_types.h>

int
main (int argc, char** argv)
{
  pcl::PointCloud<pcl::PointXYZ>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZ>);

  if (pcl::io::loadPCDFile<pcl::PointXYZ> ("airplane.pcd", *cloud) == -1) //* load the file
  {
    PCL_ERROR ("Couldn't read file test_pcd.pcd \n");
    return (-1);
  }
  std::cout << "Loaded "
            << cloud->width * cloud->height
            << " data points from test_pcd.pcd with the following fields: "
            << std::endl;
  for (size_t i = 0; i < cloud->points.size (); ++i)
    std::cout << "    " << cloud->points[i].x
              << " "    << cloud->points[i].y
              << " "    << cloud->points[i].z << std::endl;

  return (0);
}

如何读取.ply文件我在第10行进行了以下更改:

if (pcl::io::loadPLYFile<pcl::PointXYZ> ("airplane.ply", *cloud) == -1) //* load the file

它出现了编译错误。

所以我改写为:

if (pcl::io::loadPCDFile<pcl::PointXYZ> ("airplane.ply", *cloud) == -1) //* load the file

现在它给了我运行时错误:

[pcl::PCDReader::readHeader] No points to read
Couldn't read file test_pcd.pcd 

如何解决这个问题?

2 个答案:

答案 0 :(得分:11)

函数arg3确实是您应该用来读取PLY文件的。要解决编译问题,请确保包含适当的头文件(pcl::io::loadPLYFile())。

答案 1 :(得分:0)

我们还可以创建一个PLYReader作为PCDReader,如下所示,以读取PLY文件和所有指向所需云的点

#include<pcl/io/ply_io.h>

pcl::PointCloud<pcl::PointXYZ>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZ);
pcl::PLYReader Reader;
Reader.read("Path of the PLY file", *cloud);