当前位置:   article > 正文

Apollo camera 感知部分 目标检测源码阅读分析_solve3dbboxgivenonefullbboxdimensionorientation

solve3dbboxgivenonefullbboxdimensionorientation

障碍物检测分为detector transformer postprocessor tracker几个部分

kitti 基于单目的3D目标检测的预备知识点:

首先是yolo3d 3d目标检测输出结果为kitti的3D格式,(其中3d信息部分是以相机坐标系为参考坐标系的)

首先介绍下kitti 3d object detection障碍物标注的的标注文件格式

KITTI数据集,label文件解析:

Car 0.00 0 -1.84 662.20 185.85 690.21 205.03 1.48 1.36 3.51 5.35 2.56 58.84 -1.75

1个字符串:代表物体类别

'Car', 'Van', 'Truck','Pedestrian', 'Person_sitting', 'Cyclist','Tram',  'Misc' or  'DontCare'

注意:’DontCare’ 标签表示该区域没有被标注,比如由于目标物体距离激光雷达太远。为了防止在评估过程中(主要是计算precision),将本来是目标物体但是因为某些原因而没有标注的区域统计为假阳性(false positives),评估脚本会自动忽略’DontCare’ 区域的预测结果。

2个数:代表物体是否被截断,从0(非截断)到1(截断)浮动,其中truncated指离开图像边界的对象

3个数:代表物体是否被遮挡,整数0123表示被遮挡的程度

0:完全可见  1:小部分遮挡  2:大部分遮挡 3:完全遮挡(unknown

4个数:alpha,物体的观察角度,范围:-pi~pi

是在相机坐标系下,以相机原点为中心,相机原点到物体中心的连线为半径,将物体绕相机y轴旋转至相机z轴,此时物体方向与相机x轴的夹角

https://img-blog.csdnimg.cn/20181204101648283.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2N1aWNodWFuY2hlbjMzMDc=,size_16,color_FFFFFF,t_70

图1

r_y + pi/2 -theta = alpha +pi/2(即图中紫色的角是相等的)

所以alpha = r_y – theta

584个数:物体的2维边界框,左上角和右下角的像素坐标

9113个数:3维物体的尺寸,高、宽、长(单位:米)

12143个数:3维物体的位置 x,y,z(在照相机坐标系下,单位:米)

15个数:3维物体的空间方向:rotation_y,在照相机坐标系下,相对于y轴的旋转角,范围:-pi~pi

物体前进方向与相机坐标系x轴的夹角,即上面的r_y

有些有第16个数:检测的置信度 仅用于结果:浮点,p / r曲线所需,越高越好

3KITTI数据集,calib解析

https://images2018.cnblogs.com/blog/1367904/201807/1367904-20180716153028727-1432159525.png

要将Velodyne坐标中的点x投影到左侧的彩色图像中y

使用公式:y = P2 * R0_rect *Tr_velo_to_cam * x

Velodyne坐标中的点投影到右侧的彩色图像中:

使用公式:y = P3 * R0_rect *Tr_velo_to_cam * x

Tr_velo_to_cam * x    :是将Velodyne坐标中的点x投影到编号为0的相机(参考相机)坐标系中

R0_rect *Tr_velo_to_cam * x    :是将Velodyne坐标中的点x投影到编号为0的相机(参考相机)坐标系中,再修正

P2 * R0_rect *Tr_velo_to_cam * x     :是将Velodyne坐标中的点x投影到编号为0的相机(参考相机)坐标系中,再修正,然后投影到编号为2的相机(左彩色相机)

注意:所有矩阵都存储在主行中,即第一个值对应于第一行。 R0_rect包含一个3x3矩阵,需要将其扩展为4x4矩阵,方法是在右下角添加1,在其他位置添加0Tr_xxx是一个3x4矩阵(R | t),需要以相同的方式扩展到4x4矩阵!

通过使用校准文件夹中的3x4投影矩阵,可以将相机坐标系中的坐标投影到图像中,对于提供图像的左侧彩色相机,必须使用P2rotation_yalpha之间的区别在于rotation_y直接在相机坐标中给出,而alpha也会考虑从相机中心到物体中心的矢量,以计算物体相对于相机的相对方向。 例如,沿着摄像机坐标系的X轴面向的汽车,无论它位于X / Z平面(鸟瞰图)中的哪个位置,它的rotation_y都为 0,而只有当此车位于相机的Z轴上时α才为零,当此车从Z轴移开时,观察角度α将会改变。

detection:

apollo 采用的yolo3d 基于caffe变种 没有开源,网上开源的方法有 deep3dbox 

查看kitti排名可以找出许多方法,例如groomed_nms kinematic3d RTM3D(该方法可以更快落地)

http://www.cvlibs.net/datasets/kitti/eval_object.php?obj_benchmark=3d

上图是我测试后RT3D的基于单目的3d目标检测效果示意图

apollo 的yolo是基于早期的deep3dbox原理做的,因此在上述label标注元素中介绍的只有alpha是通过网络直接获得的角度,关于rotation_y 和 theta_ray角度是根据坐标转换和相机外参求得的。

transformer:

主要是如下三个处理步骤:

  1. // set object mapper options
  2. float theta_ray = 0.0f;
  3. SetObjMapperOptions(obj, camera_k_matrix, width_image, height_image,
  4. &obj_mapper_options, &theta_ray);
  5. // process
  6. mapper_->Solve3dBbox(obj_mapper_options, object_center, dimension_hwl,
  7. &rotation_y);
  8. // fill back results
  9. FillResults(object_center, dimension_hwl, rotation_y, camera2world_pose,
  10. theta_ray, obj);

其中第一个是参数配置

第二个函数需要解析的一些重点操作如下:

apollo求取这些角度的方式如下代码,思路:获得图相框底边的中心点 image_point_low_center 根据内参矩阵(camera intrinsics)camera_k_matrix得到相机坐标系下的3D坐标点 point_in_camera,然后利用图1所示的原理获得 theta_ray rotation_y 两个方位角度信息。

  1. //multicue_obstacle_transformer.cc
  2. float box_cent_x = (bbox2d[0] + bbox2d[2]) / 2;
  3. Eigen::Vector3f image_point_low_center(box_cent_x, bbox2d[3], 1);
  4. Eigen::Vector3f point_in_camera =
  5. static_cast<Eigen::Matrix<float, 3, 1, 0, 3, 1>>(
  6. camera_k_matrix.inverse() * image_point_low_center);
  7. *theta_ray =
  8. static_cast<float>(atan2(point_in_camera.x(), point_in_camera.z()));
  9. float rotation_y =
  10. *theta_ray + static_cast<float>(obj->camera_supplement.alpha);

求取目标物在相机坐标系下的中心点坐标:

利用小孔成像原理:

ObjMapper::SolveCenterFromNearestVerticalEdge

该函数用于获取目标中心点在相机坐标系下的坐标,以下代码做了注释。

  1. bool ObjMapper::SolveCenterFromNearestVerticalEdge(const float *bbox,
  2. const float *hwl, float ry,
  3. float *center,
  4. float *center_2d) const {
  5. center[0] = center[1] = center[2] = 0.0f;
  6. float height_bbox = bbox[3] - bbox[1];
  7. float width_bbox = bbox[2] - bbox[0];
  8. if (width_bbox <= 0.0f || height_bbox <= 0.0f) {
  9. AERROR << "width or height of bbox is 0";
  10. return false;
  11. }
  12. if (common::IRound(bbox[3]) >= height_ - 1) {
  13. height_bbox /= params_.occ_ratio;
  14. }
  15. //求取目标物距离相机近的一面的在相机坐标系下的深度
  16. float f = (k_mat_[0] + k_mat_[4]) / 2;
  17. float depth = f * hwl[0] * common::IRec(height_bbox);
  18. // compensate from the nearest vertical edge to center
  19. const float PI = common::Constant<float>::PI();
  20. float theta_bbox = static_cast<float>(atan(hwl[1] * common::IRec(hwl[2])));
  21. float radius_bbox =
  22. common::ISqrt(common::ISqr(hwl[2] / 2) + common::ISqr(hwl[1] / 2));
  23. float abs_ry = fabsf(ry);
  24. float theta_z = std::min(abs_ry, PI - abs_ry) + theta_bbox;
  25. theta_z = std::min(theta_z, PI - theta_z);
  26. //求目标物中心点深度 需要加上目标物长度的一半并考虑角度来计算
  27. depth += static_cast<float>(fabs(radius_bbox * sin(theta_z)));
  28. // back-project to solve center 获得中心点坐标(kitti 3d label中的那几列,利用内参投影获得)
  29. center_2d[0] = (bbox[0] + bbox[2]) / 2;
  30. center_2d[1] = (bbox[1] + bbox[3]) / 2;
  31. if (hwl[1] > params_.stable_w) {
  32. GetCenter(bbox, depth, ry, hwl, center, center_2d);
  33. } else {
  34. center[2] = depth;
  35. UpdateCenterViaBackProjectZ(bbox, hwl, center_2d, center);
  36. }
  37. return center[2] > params_.depth_min;
  38. }

  1. bool ObjMapper::Solve3dBboxGivenOneFullBboxDimensionOrientation(
  2. const float *bbox, const float *hwl, float *ry, float *center) {
  3. const float PI = common::Constant<float>::PI();
  4. const float PI_HALF = PI / 2;
  5. const float small_angle_diff =
  6. common::IDegreeToRadians(params_.angle_resolution_degree);
  7. float center_2d[2] = {0};
  8. bool success =
  9. SolveCenterFromNearestVerticalEdge(bbox, hwl, *ry, center, center_2d);
  10. float min_x = static_cast<float>(params_.boundary_len);
  11. float min_y = static_cast<float>(params_.boundary_len);
  12. float max_x = static_cast<float>(width_ - params_.boundary_len);
  13. float max_y = static_cast<float>(height_ - params_.boundary_len);
  14. //截断属性 判断是否截断
  15. bool truncated = bbox[0] <= min_x || bbox[2] >= max_x || bbox[1] <= min_y ||
  16. bbox[3] >= max_y;
  17. //判断是否超过考虑的距离 目标物过远过小
  18. float dist_rough = sqrtf(common::ISqr(center[0]) + common::ISqr(center[2]));
  19. bool ry_pred_is_not_reliable = dist_rough > params_.dist_far &&
  20. bbox[3] - bbox[1] < params_.small_bbox_height;
  21. if (ry_pred_is_not_reliable || std::abs(*ry - PI_HALF) < small_angle_diff ||
  22. std::abs(*ry + PI_HALF) < small_angle_diff) {
  23. *ry = *ry > 0.0f ? PI_HALF : -PI_HALF;
  24. }
  25. if (!truncated) {
  26. PostRefineOrientation(bbox, hwl, center, ry);
  27. success =
  28. SolveCenterFromNearestVerticalEdge(bbox, hwl, *ry, center, center_2d);
  29. PostRefineZ(bbox, hwl, center_2d, *ry, center);
  30. } else {
  31. FillRyScoreSingleBin(*ry);
  32. }
  33. return success &&
  34. GetProjectionScore(*ry, bbox, hwl, center, true) > params_.iou_suc;
  35. }

获得相机坐标系下三维框的函数是:

bool ObjMapper::Solve3dBbox(const ObjMapperOptions &options, float center[3],
                            float hwl[3], float *ry)

第三个函数fillresults 是吧求得的所有结果 中心点 追踪id 长宽高 角度等内容存储起来:

// fill back results
FillResults(object_center, dimension_hwl, rotation_y, camera2world_pose,
            theta_ray, obj);

上述分析完成后 是代码移植,移植代码到windows vs2017的开发环境

模型文件所在位置:

apollo\modules\perception\production\data\perception\camera\models\yolo_obstacle_detector\3d-r4-half

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/414094
推荐阅读
相关标签
  

闽ICP备14008679号