ubuntu20.04 自带的 apt 包管理工具可以安装 pcl 1.10. 安装命令如下:
sudo apt install libpcl-dev pcl-tools
其中 libpcl-dev
包含了 PCL 库及其开发文件, pcl-tools
包含了一些操作点云数据的实用工具. 安装完之后会在 /lib/x86_64-linux-gnu/cmake/pcl
下载相关的 cmake 文件. 在 cmake 项目中使用 find_package(PCL Required)
后就可以找到和 PCL 相关的 target 和相关宏定义. 关于定义的内容可以查看 /lib/x86_64-linux-gnu/cmake/pcl/PCLConfig.cmake
, 在该文件的开始内容如下:
# ------------------------------------------------------------------------------------
# Helper to use PCL from outside project
#
# target_link_libraries(my_fabulous_target PCL_XXX_LIBRARIES) where XXX is the
# upper cased xxx from :
#
# - common
# - kdtree
# - octree
# - search
# - sample_consensus
# - filters
# - 2d
# - geometry
# - io
# - features
# - ml
# - segmentation
# - visualization
# - surface
# - registration
# - keypoints
# ...
这个文件也告诉了我们 pcl 的 cmake 配置文件会生成哪些 target 以及如何使用.
参考资料:
install pcl in ubuntu20.04