depthimage_to_laserscan代码解读

上代码:

 1 template<typename T>
 2     void convert(const sensor_msgs::ImageConstPtr& depth_msg, const image_geometry::PinholeCameraModel& cam_model,
 3                  const sensor_msgs::LaserScanPtr& scan_msg, const int& scan_height) const{
 4         // Use correct principal point from calibration
 5         float center_x = cam_model.cx();//
 6         float center_y = cam_model.cy();
 7 
 8         // Combine unit conversion (if necessary) with scaling by focal length for computing (X,Y)
 9         double unit_scaling = depthimage_to_laserscan::DepthTraits<T>::toMeters( T(1) );
10         float constant_x = unit_scaling / cam_model.fx();//
11         float constant_y = unit_scaling / cam_model.fy();
12 
13         const T* depth_row = reinterpret_cast<const T*>(&depth_msg->data[0]);
14         int row_step = depth_msg->step / sizeof(T);
15 
16         int offset = (int)(cam_model.cy()-scan_height/2);
17         depth_row += offset*row_step; // Offset to center of image
18 
19         for(int v = offset; v < offset+scan_height_; v++, depth_row += row_step){
20             for (int u = 0; u < (int)depth_msg->width; u++) // Loop over each pixel in row
21             {
22                 T depth = depth_row[u];
23 
24                 double r = depth; // Assign to pass through NaNs and Infs
25                 double th = -atan2((double)(u - center_x) * constant_x, unit_scaling); // Atan2(x, z), but depth divides out
26                 int index = (th - scan_msg->angle_min) / scan_msg->angle_increment;
27 
28                 if (depthimage_to_laserscan::DepthTraits<T>::valid(depth)){ // Not NaN or Inf
29                     // Calculate in XYZ
30                     double x = (u - center_x) * depth * constant_x;
31                     double z = depthimage_to_laserscan::DepthTraits<T>::toMeters(depth);
32 
33                     // Calculate actual distance
34                     r = sqrt(pow(x, 2.0) + pow(z, 2.0));
35                 }
36 
37                 // Determine if this point should be used.
38                 if(use_point(r, scan_msg->ranges[index], scan_msg->range_min, scan_msg->range_max)){
39                     scan_msg->ranges[index] = r;
40                 }
41             }
42         }
43     }

  可见,convert函数选取深度图的中心数行,然后计算每一个像素基于相机中心的距离,并选取同一列的距离最小值(由函数use_point实现)填充给laserscan的data[index]。

  结论:

  1. depthimage_to_laserscan不能有效的对复杂的3D环境有很好的投影成2D laserscan的效果
  2. 如果将列的范围扩大到最大,对2D SLAM是否有更好的避障效果?实时性能否保证?
  3. 对于深度相机,可以考虑pointcloud_to_laserscan.

转载于:https://www.cnblogs.com/mantouRobot/p/5590603.html

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: depthimage_to_laserscan是ROS中的一个软件包,用于将深度图像转换为激光扫描数据。安装该软件包的步骤如下: 1. 打开终端,进入ROS工作空间的src目录: cd ~/catkin_ws/src 2. 使用git命令从GitHub上下载depthimage_to_laserscan软件包: git clone https://github.com/ros-perception/depthimage_to_laserscan.git 3. 返回ROS工作空间的根目录,使用catkin_make命令编译软件包: cd ~/catkin_ws catkin_make 4. 如果编译成功,就可以使用rosrun命令启动depthimage_to_laserscan节点: rosrun depthimage_to_laserscan depthimage_to_laserscan 5. 在启动节点之前,需要确保已经有深度图像的话题发布。可以使用以下命令启动深度图像的发布节点: rosrun openni2_camera openni2_camera 或 roslaunch freenect_launch freenect.launch 6. 启动节点后,可以使用rviz等工具查看转换后的激光扫描数据。 ### 回答2: depthimage_to_laserscan是一个ROS软件包,可以将RGB图像或深度图像转换为激光雷达扫描数据。因为在一些应用场合中只有单目或RGBD相机,不能直接使用激光雷达,但需要激光雷达扫描的信息,因此就需要使用这个软件包。 depthimage_to_laserscan软件包并不是ROS的默认包,需要手动安装。下面是安装步骤: 第一步:打开终端 首先需要使用Linux终端来进行软件包的安装和配置。 第二步:安装ROS 如果还没有安装ROS,需要先安装ROS。可以使用以下命令在Ubuntu中安装ROS: $ sudo apt-get update $ sudo apt-get install ros-kinetic-desktop-full 其中,ros-kinetic-desktop-full是ROS的完整版,用户可以根据需求选择安装合适的版本。 第三步:下载软件包 在终端中,使用以下命令来下载depthimage_to_laserscan软件包: $ cd ~/catkin_ws/src $ git clone https://github.com/ros-perception/depthimage_to_laserscan.git 上述命令将安装ROS激光雷达转换软件包,并将其安装到catkin工作区源目录中(~/catkin_ws/src)。 第四步:编译软件包 使用以下命令编译安装软件包: $ cd ~/catkin_ws $ catkin_make catkin_make是ROS的编译工具,会将软件包编译成二进制文件,并将它们安装到ROS环境中。 第五步:测试软件包 使用以下命令测试软件包的功能: $ roslaunch depthimage_to_laserscan example.launch 该命令将启动节点,生成激光雷达扫描数据。可以使用以下命令查看数据: $ rostopic echo /scan 至此,depthimage_to_laserscan软件包的安装已经完成,并测试成功。需要注意的是,depthimage_to_laserscan节点需要重定向图像话题输入,比如激光雷达通常会提供深度数据,并将其放在“/camera/depth/image”话题的sensor_msgs/Image消息中。如果要使用其他数据源,请根据需要进行调整。 ### 回答3: depthimage_to_laserscan是一个ROS软件包,用于将深度图像转换为激光扫描数据,使得可以使用已有的激光扫描程序来分析深度图像。depthimage_to_laserscan软件包可以在ROS Kinetic和ROS Melodic版本下使用。 以下是depthimage_to_laserscan安装的步骤: 1. 在ROS系统中进入工作空间(catkin_ws),运行以下命令: cd ~/catkin_ws/src 2. 克隆depthimage_to_laserscan软件包到src目录: git clone https://github.com/ros-perception/depthimage_to_laserscan.git 3. 编译软件包: cd ~/catkin_ws catkin_make 4. 配置深度相机: depthimage_to_laserscan可以与不同类型的深度相机一起使用。深度相机应该配置好并在ROS系统中可用。示例代码涉及使用Kinect v2相机。 5. 运行depthimage_to_laserscan节点: 在一个终端中输入以下命令: roscore 在另一个终端中输入以下命令: source ~/catkin_ws/devel/setup.bash roslaunch freenect_launch freenect.launch depth_registration:=true 在另一个终端中输入以下命令: source ~/catkin_ws/devel/setup.bash rosrun depthimage_to_laserscan depthimage_to_laserscan image:=/camera/depth/image_raw 6. 使用RViz显示生成的激光扫描数据: 在一个终端中输入以下命令: source ~/catkin_ws/devel/setup.bash rosrun rviz rviz 在RViz中,设置Fixed Frame为相机坐标系(camera_link),然后添加一个LaserScan消息显示器,将Topic设置为/laser_scan。 如此一来,depthimage_to_laserscan软件包就成功安装,并且可以将深度图像转换为激光扫描数据,使得可以使用已有的激光扫描程序来分析深度图像。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值