1 Star 0 Fork 0

少年阿威/depth_to_cloud

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 721 Bytes
一键复制 编辑 原始数据 按行查看 历史
少年阿威 提交于 2024-12-17 22:47 . first commit
cmake_minimum_required(VERSION 3.0.2)
project(depth_to_pointcloud)
## 查找 catkin 包
find_package(catkin REQUIRED COMPONENTS
roscpp
cv_bridge
sensor_msgs
pcl_conversions
pcl_ros
)
## 查找 PCL 库
find_package(PCL REQUIRED)
catkin_package()
## 包含头文件目录
include_directories(
include
${catkin_INCLUDE_DIRS}
${PCL_INCLUDE_DIRS}
)
## 添加可执行文件
add_executable(depth_to_pointcloud_node src/depth_to_pointcloud.cpp)
## 链接库文件
target_link_libraries(depth_to_pointcloud_node
${catkin_LIBRARIES}
${PCL_LIBRARIES}
)
# ## 安装配置(可选)
# install(TARGETS depth_to_pointcloud
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
# )
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/energetic-awei/depth_to_cloud.git
git@gitee.com:energetic-awei/depth_to_cloud.git
energetic-awei
depth_to_cloud
depth_to_cloud
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385