Skip to content

Latest commit

 

History

History
83 lines (55 loc) · 2.28 KB

reading_pcd.rst

File metadata and controls

83 lines (55 loc) · 2.28 KB

Reading Point Cloud data from PCD files

In this tutorial we will learn how to read point cloud data from a PCD file.

The code

First, create a file called, let's say, pcd_read.cpp in your favorite editor, and place the following code inside it:

sources/pcd_read/pcd_read.cpp

The explanation

Now, let's break down the code piece by piece.

sources/pcd_read/pcd_read.cpp

creates a PointCloud<PointXYZ> boost shared pointer and initializes it.

sources/pcd_read/pcd_read.cpp

loads the PointCloud data from disk (we assume that test_pcd.pcd has already been created from the previous tutorial) into the binary blob.

Alternatively, you can read a PCLPointCloud2 blob (available only in PCL 1.x). Due to the dynamic nature of point clouds, we prefer to read them as binary blobs, and then convert to the actual representation that we want to use.

pcl::PCLPointCloud2 cloud_blob;
pcl::io::loadPCDFile ("test_pcd.pcd", cloud_blob);
pcl::fromPCLPointCloud2 (cloud_blob, *cloud); //* convert from pcl/PCLPointCloud2 to pcl::PointCloud<T>

reads and converts the binary blob into the templated PointCloud format, here using pcl::PointXYZ as the underlying point type.

Finally:

sources/pcd_read/pcd_read.cpp

is used to show the data that was loaded from file.

Compiling and running the program

Add the following lines to your CMakeLists.txt file:

sources/pcd_read/CMakeLists.txt

After you have made the executable, you can run it. Simply do:

$ ./pcd_read 

You will see something similar to:

Loaded 5 data points from test_pcd.pcd with the following fields: x y z
  0.35222 -0.15188 -0.1064
  -0.39741 -0.47311 0.2926
  -0.7319 0.6671 0.4413
  -0.73477 0.85458 -0.036173
  -0.4607 -0.27747 -0.91676

Note that if the file test_pcd.pcd does not exist (either it hasn't been created or it has been erased), you should get an error message such as:

Couldn't read file test_pcd.pcd