Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 883 Bytes

PclExtension.md

File metadata and controls

33 lines (23 loc) · 883 Bytes

RGL PCL extension

The extension introduces the nodes and functions for point cloud processing. RGL features are enhanced with:

  • Downsampling
  • Writing to PCD file
  • Visualization

For operations listed above, the extension uses Point Cloud Library.

Building

Before building RGL PCL extension, it is necessary to install the required dependencies. Run the setup script with --install-pcl-deps flag to download and install them. It could take some time (Point Cloud Library is built from source):

# Linux:
./setup.py --install-pcl-deps
# Windows:
python setup.py --install-pcl-deps

To build RGL with PCL extension, run the setup script with --with-pcl:

# Linux:
./setup.py --with-pcl
# Windows:
python setup.py --with-pcl

API documentation

More details can be found here.