ubuntu下安装pcl

前端之家收集整理的这篇文章主要介绍了ubuntu下安装pcl前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sudo apt-get install git
cd
git clone https://github.com/PointCloudLibrary/pcl.git
cd pcl
mkdir build
cd build
cmake ..
Note the missing development libraries,eg:


-- checking for module 'eigen3'
-- package 'eigen3' not found
-- checking for module 'flann>=1.7.0'
-- package 'flann>=1.7.0' not found
and install the development libraries with,eg:


sudo apt-get install libeigen3-dev

sudo apt-get install libflann-dev

we also need to install boost library,the install method of which can be also found in my blog.

Start the compiler with make make And install the classic way make install sudo make install with checkinstall sudo apt-get install checkinstall sudo checkinstall 原文链接:https://www.f2er.com/ubuntu/351003.html

猜你在找的Ubuntu相关文章