Tutorial
Getting started with GeoPCL is easy! GeoPCL can be used in two different ways. Some functionality can even be used without needing to build any libraries. Others will need to be compiled ahead of time. This tutorial will step you through an example of each.
Header Only (LAS to PCD conversion)
The LAStoPCD conversion routine can be accessed by simply including LAStoPCD.hpp in your source. You will need to have previously built and installed both libLAS and PCL, and will need to link your program against each of these. A very simple example of this is shown below (this example is included in the distribution as apps/LAStoPCD.cpp).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|