ROS的depthimage_to_laserscan剖析

当我们想把RGBD相机的深度图转成单线激光雷达来使时,经常考虑到使用depthimage_to_laserscan的ros包。

RGBD极坐标系下的极限角

其中有关于通过深度图和相机内参转成基于极坐标系下的单线激光雷达最大和最小角度这两个参数,用到的代码如下:

double DepthImageToLaserScan::magnitude_of_ray(const cv::Point3d& ray) const{
  return sqrt(pow(ray.x, 2.0) + pow(ray.y, 2.0) + pow(ray.z, 2.0));
}

double DepthImageToLaserScan::angle_between_rays(const cv::Point3d& ray1, const cv::Point3d& ray2) const{
    //因为
  const double dot_product = ray1.x*ray2.x + ray1.y*ray2.y + ray1.z*ray2.z;
  const double magnitude1 = magnitude_of_ray(ray1);
  const double magnitude2 = magnitude_of_ray(ray2);;
  return acos(dot_product / (magnitude1 * magnitude2));
}

其中用到的公式主要是基于两个向量来算的,默认相机中心为原点(0,0,0),如下图:

 

 因此左边点跟原点是向量a,右边点和原点构成向量b,则根据公式就可算出来角度。

ab=\left \| a \right \|\left \| b \right \|cos\vartheta

变换一下就可以得到角度:

 RGBD极坐标系下的坐标值

极角是通过公式:

 极长计算分两步:

1. 先算x

变换就可以得到 

 

 2.再算极长

          double r = depth; // Assign to pass through NaNs and Infs
          const double th = -atan2((double)(u - center_x) * constant_x, unit_scaling); // Atan2(x, z), but depth divides out
          const int index = (th - scan_msg->angle_min) / scan_msg->angle_increment;

          if (depthimage_to_laserscan::DepthTraits<T>::valid(depth)){ // Not NaN or Inf
            // Calculate in XYZ
            double x = (u - center_x) * depth * constant_x;
            double z = depthimage_to_laserscan::DepthTraits<T>::toMeters(depth);

            // Calculate actual distance
            r = hypot(x, z);
          }

 带状数据处理

带状的意思主要是scan_height,如果scan_height为1时,该代码只找到深度图中间的cy的那根线,如果大于1就变成带状的结构。

带状的数据按照数据有效和最近原则筛选:

bool DepthImageToLaserScan::use_point(const float new_value, const float old_value, const float range_min, const float range_max) const{
  // Check for NaNs and Infs, a real number within our limits is more desirable than these.
  const bool new_finite = std::isfinite(new_value);
  const bool old_finite = std::isfinite(old_value);

  // Infs are preferable over NaNs (more information)
  if(!new_finite && !old_finite){ // Both are not NaN or Inf.
    if(!std::isnan(new_value)){ // new is not NaN, so use it's +-Inf value.
      return true;
    }
    return false; // Do not replace old_value
  }

  // If not in range, don't bother
  const bool range_check = range_min <= new_value && new_value <= range_max;
  if(!range_check){
    return false;
  }

  if(!old_finite){ // New value is in range and finite, use it.
    return true;
  }

  // Finally, if they are both numerical and new_value is closer than old_value, use new_value.
  const bool shorter_check = new_value < old_value;
  return shorter_check;
}

  • 4
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 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、付费专栏及课程。

余额充值