Skip to content

Instantly share code, notes, and snippets.

@ompugao
Created July 29, 2014 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ompugao/db539438a18f69a50660 to your computer and use it in GitHub Desktop.
Save ompugao/db539438a18f69a50660 to your computer and use it in GitHub Desktop.
how to build pcl
git clone git://github.com/mariusmuja/flann.git
cd flann
mkdir build
cmake .. -DCMAKE_BUILD_TYPE=Release
make
sudo make install
sudo checkinstall # to build deb package
git clone git://github.com/PointCloudLibrary/pcl
cd pcl
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/mujin/visioncontroller/install
make -j4
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment