当前位置:   article > 正文

使用激光雷达(LiDAR)和相机进行3D物体跟踪

雷达点和普通3d点的关联

d789c49321fb62f91ee8173063246f70.gif

使用相机和激光雷达进行时间到碰撞(TTC)计算

在我的先前文章中,我介绍了通过检测关键点和匹配描述符进行2D特征跟踪的主题。在本文中,我将利用这些文章中的概念,以及更多的内容,开发一个软件流水线,使用相机和激光雷达测量在3D空间中检测和跟踪对象,并使用两者估计每个时间步长与前方车辆的时间到碰撞(TTC)(如本文开头的GIF所示)。我完成了这个项目,作为我Udacity传感器融合纳米学位课程的一部分。

要理解整个过程,请参考下面的流程图。我的先前文章详细介绍了流程图中的第5、6和7点。本文将简要介绍代码片段中的其余部分。

e29b87e4bbb86b0b5a1774e56974e5f5.jpeg建立TTC计算的基本块

该项目分为4个部分:

1. 首先,通过使用关键点对应关系来开发一种匹配3D对象的方法。

2. 其次,基于激光雷达测量计算TTC。

3. 然后,使用相机执行相同的操作,这首先要将关键点匹配到感兴趣区域,然后基于这些匹配计算TTC。

4. 最后,对框架进行各种测试。目标是识别用于TTC估计的最适合的检测器/描述符组合,同时搜索可能导致相机或激光雷达传感器测量错误的问题。

检测和分类对象

我们需要一种方法来检测图像中的车辆,以便我们可以隔离匹配的关键点以及投影的激光雷达点,并将它们与特定对象关联起来。然而,为了计算特定车辆的时间到碰撞,我们需要隔离该车辆上的关键点,以便TTC估计不会因包括例如道路表面、静止物体或场景中其他车辆上的匹配而扭曲。实现这一目标的一种方法是使用对象检测自动识别场景中的车辆。基于这些边界框,我们可以轻松地将关键点匹配到对象,并实现稳定的TTC估计。

一种易于使用且基于深度学习的方法是YOLO,这是一个非常快速的检测框架,它随OpenCV库一起提供。我使用YOLOv3,它可以根据COCO(一个大规模的对象检测、分割和字幕数据集)在图像和视频中识别80种不同的对象。

这是图像通过神经网络后的最终输出。所有检测到的车辆都被包含在边界框中。

08ffa0b7daf087f06d618fcb3ec9780c.jpeg

裁剪和使用边界框对激光雷达点进行聚类

由于我们的目标是计算与前车的TTC,我们应该只关注紧挨着自动车的车辆,并忽略所有其他车辆。在对激光雷达点进行聚类后,我们过滤掉所有位于相邻车道和道路上的点。然后,我们遍历所有激光雷达点,将它们投影到相机平面,并将它们关联到各自的边界框。这是在过滤之前的样子;对象的激光雷达点被包含在各自的边界框内。

189691506e9fcaaf562d254a380b8dcf.jpeg

在过滤掉与我们的功能无关的对象之后,图像将如下所示:

e5bd482bf5274f2520a831e7643a0e08.jpeg

跟踪3D对象边界框

一旦我们对多个图像执行了上述步骤,我们就可以开始在连续图像之间跟踪边界框。为了在帧之间匹配边界框,我们遍历所有关键点匹配对,并在两个帧中关联相应的边界框。然后,我们存储匹配的唯一框ID,并创建一个边界框匹配对。

具有最高关键点匹配次数的边界框对然后被选择为最佳匹配对(bbBestMatches),因此我们能够在连续帧中唯一跟踪相同的对象。

以下图像说明了这个概念。左图是来自T-1时刻的帧,右图是T时刻的帧。前一帧中的边界框(框ID 1)在当前帧中有两个边界框(框ID 3,4)上的关键点匹配。然而,由于BB1和BB3之间的关键点匹配对具有与BB1和BB4相比的最高匹配次数,所以边界框对1–3被选为最佳匹配对,因此代表相同的对象。

9698a1f9d95ee02c4da0d38bb53228a2.jpeg

以下是实现相同的代码:

  1. /**
  2. * @brief Match list of 3D objects (vector<BoundingBox>) between current and previous frame
  3. *
  4. * @param matches List of best matches between previous and current frame
  5. * @param bbBestMatches Output list of best matches between previous and current frame (matched boxID pairs)
  6. * @param prevFrame Previous frame
  7. * @param currFrame Current frame
  8. */
  9. void matchBoundingBoxes(std::vector<cv::DMatch> &matches, std::map<int, int> &bbBestMatches, DataFrame &prevFrame, DataFrame &currFrame)
  10. {
  11. /* STEP 1 : Go through all keypoint matches and associate them with their respective bounding boxes in both images */
  12. std::multimap<int, int> bbTempMatches;
  13. // Loop over all the keypoint match pairs
  14. for (auto matchIt = matches.begin(); matchIt != matches.end(); ++matchIt)
  15. {
  16. int prevImgBoxID = -1;
  17. int currImgBoxID = -1;
  18. // Loop through all the BBoxes in previous image and find the box ID of the 'query' keypoint(match keypoint in previous image)
  19. for (auto it = prevFrame.boundingBoxes.begin(); it != prevFrame.boundingBoxes.end(); ++it)
  20. {
  21. cv::KeyPoint keyPt;
  22. keyPt = prevFrame.keypoints[matchIt->queryIdx];
  23. if (it->roi.contains(keyPt.pt))
  24. // if ((keyPt.pt.x > (it->roi.x)) && (keyPt.pt.x < (it->roi.x + it->roi.width)) &&
  25. // (keyPt.pt.y > (it->roi.y)) && (keyPt.pt.y < (it->roi.y + it->roi.height)))
  26. {
  27. it->keypoints.push_back(keyPt);
  28. prevImgBoxID = it->boxID;
  29. break;
  30. }
  31. }
  32. // Loop through all the BBoxes in current image and find the box ID of the 'train' keypoint(match keypoint in current image)
  33. for (auto it = currFrame.boundingBoxes.begin(); it != currFrame.boundingBoxes.end(); ++it)
  34. {
  35. cv::KeyPoint keyPt;
  36. keyPt = currFrame.keypoints[matchIt->trainIdx];
  37. if (it->roi.contains(keyPt.pt))
  38. // if ((keyPt.pt.x > (it->roi.x)) && (keyPt.pt.x < (it->roi.x + it->roi.width)) &&
  39. // (keyPt.pt.y > (it->roi.y)) && (keyPt.pt.y < (it->roi.y + it->roi.height)))
  40. {
  41. it->keypoints.push_back(keyPt);
  42. currImgBoxID = it->boxID;
  43. break;
  44. }
  45. }
  46. // Store the box ID pairs in a temporary multimap
  47. if ((prevImgBoxID != -1) && (currImgBoxID != -1)) // Exclude pairs which are not part of either BBoxes
  48. {
  49. bbTempMatches.insert(std::make_pair(prevImgBoxID, currImgBoxID));
  50. }
  51. } // eof Loop over all keypoint match pairs
  52. /* STEP 2: For each BBox pair count the number of keypoint matches*/
  53. // Find all the unique keys (BBox IDs in the prev image) from the multimap
  54. std::set<int> unique_keys;
  55. int last_key = INT_MIN; // some value that won't appear
  56. for (auto it = bbTempMatches.begin(); it != bbTempMatches.end(); ++it)
  57. {
  58. if (it->first != last_key)
  59. {
  60. unique_keys.insert(it->first);
  61. last_key = it->first;
  62. }
  63. }
  64. // Display contents of multimap
  65. if (false)
  66. {
  67. for (auto itr = bbTempMatches.begin(); itr != bbTempMatches.end(); ++itr)
  68. {
  69. cout << '\t' << itr->first << '\t' << itr->second
  70. << '\n';
  71. }
  72. }
  73. // Create a map to count occurrences of each key-value pair
  74. std::map<std::pair<int, int>, int> count_map;
  75. // Loop through each element in the multimap
  76. for (auto it = bbTempMatches.begin(); it != bbTempMatches.end(); ++it)
  77. {
  78. // Create a pair from the key and value of multimap
  79. std::pair<int, int> key_value_pair = std::make_pair(it->first, it->second);
  80. // Check if the pair already exists in count_map
  81. if (count_map.find(key_value_pair) == count_map.end())
  82. {
  83. // If not, insert it with a count of 1
  84. count_map.insert(std::make_pair(key_value_pair, 1));
  85. }
  86. else
  87. {
  88. // If it exists, increment the count
  89. count_map[key_value_pair]++;
  90. }
  91. }
  92. // Display the count of each key-value pair
  93. if (false)
  94. {
  95. for (auto it = count_map.begin(); it != count_map.end(); ++it)
  96. {
  97. std::cout << "(" << it->first.first << ", " << it->first.second << "): " << it->second << std::endl;
  98. }
  99. }
  100. /* STEP 3: The BBox pair with highest number of keypoint match occurences is the best matched BBox pair*/
  101. // Iterate through each unique bounding box IDs in the previous image
  102. for (auto it = unique_keys.begin(); it != unique_keys.end(); ++it)
  103. {
  104. int BBoxIdx1 = -1; // BBox index
  105. int BBoxIdx2 = -1;
  106. int maxKyPtCnt = INT_MIN;
  107. // Loop through all the BBox matched pairs and find the ones with highest keypoint occurences
  108. for (auto it1 = count_map.begin(); it1 != count_map.end(); ++it1)
  109. {
  110. int currKyPtCnt = it1->second; // Number of occurences for the current BBox pair
  111. if (it1->first.first == *it)
  112. {
  113. if (currKyPtCnt >= maxKyPtCnt)
  114. {
  115. maxKyPtCnt = currKyPtCnt;
  116. BBoxIdx1 = it1->first.first;
  117. BBoxIdx2 = it1->first.second;
  118. }
  119. }
  120. }
  121. if ((BBoxIdx1 != -1) && (BBoxIdx2 != -1)) // Exclude pairs which are not part of either BBoxes
  122. {
  123. bbBestMatches.insert(std::make_pair(BBoxIdx1, BBoxIdx2));
  124. }
  125. }
  126. // Display the count of each BBox pair
  127. if (false)
  128. {
  129. for (auto it = bbBestMatches.begin(); it != bbBestMatches.end(); ++it)
  130. {
  131. std::cout << "(" << it->first << ", " << it->second << "): " << std::endl;
  132. }
  133. }
  134. }

所有属于当前帧边界框的关键点匹配都被聚类并通过根据它们相对于边界框中所有匹配的欧几里德距离消除离群匹配来进行过滤。

这一步是为了使用相机计算鲁棒的TTC,我们稍后会看到。

5342447c882388ad6da956b88bc8a89a.png

下面的代码展示了如何实现上述的过滤器。

  1. /**
  2. * @brief Cluster keypoint matches with the current bounding box
  3. *
  4. * @param boundingBox Current bounding box
  5. * @param kptsPrev Previous frame keypoints
  6. * @param kptsCurr Current frame keypoints
  7. * @param kptMatches Keypoint matches between previous and current frame
  8. */
  9. void clusterKptMatchesWithROI(BoundingBox &boundingBox, std::vector<cv::KeyPoint> &kptsPrev, std::vector<cv::KeyPoint> &kptsCurr, std::vector<cv::DMatch> &kptMatches)
  10. {
  11. /* STEP 1: Associate the keypoint match with the bounding box and calculate keypoint match distance*/
  12. // Loop through all the keypoint matches and find the ones which are part of the current bounding box
  13. // Also find the distance between the matched keypoints
  14. std::vector<double> distKptMatches;
  15. for (auto it = kptMatches.begin(); it != kptMatches.end(); ++it)
  16. {
  17. cv::KeyPoint keyPtPrev, keyPtCurr;
  18. double dist;
  19. keyPtPrev = kptsPrev[it->queryIdx];
  20. keyPtCurr = kptsCurr[it->trainIdx];
  21. if (boundingBox.roi.contains(keyPtCurr.pt))
  22. {
  23. boundingBox.kptMatches.push_back(*it);
  24. dist = cv::norm(keyPtCurr.pt - keyPtPrev.pt);
  25. distKptMatches.push_back(dist);
  26. }
  27. }
  28. /*STEP 2: Remove outlier keypoint matches from the bounding box*/
  29. // Get the Q1 and Q3 percentile for the distance vector
  30. double q1 = percentile(distKptMatches, 0.25);
  31. double q3 = percentile(distKptMatches, 0.75);
  32. // Find the IQR for the distance vector
  33. double iqr = q3 - q1;
  34. // Go through all the matched keypoint pairs in the current bounding box and remove the ones which are outliers from the bounding box
  35. auto it1 = boundingBox.kptMatches.begin();
  36. while (it1 != boundingBox.kptMatches.end())
  37. {
  38. cv::KeyPoint keyPtPrev, keyPtCurr;
  39. double dist;
  40. keyPtPrev = kptsPrev[it1->queryIdx];
  41. keyPtCurr = kptsCurr[it1->trainIdx];
  42. dist = cv::norm(keyPtCurr.pt - keyPtPrev.pt);
  43. if ((dist < (q1 - 1.5 * iqr)) || (dist > (q3 + 1.5 * iqr)))
  44. {
  45. it1 = boundingBox.kptMatches.erase(it1); // erase() returns the next iterator
  46. }
  47. else
  48. {
  49. ++it1;
  50. }
  51. }
  52. }

计算使用 LiDAR 点的时间到碰撞(TTC)

这一步使用仅基于 LiDAR 测量的方式计算前车的时间到碰撞(TTC)。

adce8b3edd748dc4f120bc5fbb88feec.jpeg

如上图所示,d0 是时刻 t0 时自车与前车之间的距离,d1 是时刻 t1 时的距离。基于恒定速度模型,计算 TTC 的方程如下:

3e6ee6e503d645fc5b1999587e643815.jpeg使用 LiDAR 计算 TTC

一旦知道相对速度 v0,就可以通过将两车之间的剩余距离除以 v0 来轻松计算碰撞时间。因此,鉴于 LiDAR 传感器能够进行精确的距离测量,可以基于 CVM 和上述方程组开发一个用于 TTC 估计的系统。然而,请注意,雷达传感器将是 TTC 计算的更优解,因为它可以直接测量相对速度,而在 LiDAR 传感器中,我们需要从两个(带有噪音的)距离测量中计算 v0。

为了使 TTC 对离群值具有鲁棒性,我使用 IQR 方法在距离测量中进行了滤除。以下是 TTC 的实现:

  1. /**
  2. * @brief Compute time-to-collision (TTC) based on Lidar measurements
  3. *
  4. * @param lidarPointsPrev Previous Lidar points
  5. * @param lidarPointsCurr Current Lidar points
  6. * @param frameRate Frame rate of the camera
  7. * @param TTC Output TTC
  8. */
  9. void computeTTCLidar(std::vector<LidarPoint> &lidarPointsPrev,
  10. std::vector<LidarPoint> &lidarPointsCurr, double frameRate, double &TTC, double &velLidar)
  11. {
  12. // auxiliary variables
  13. double dT = 1.0 / frameRate; // time between two measurements in seconds
  14. std::vector<double> lidarPointsPrevX, lidarPointsCurrX;
  15. std::vector<double> filtLidarPointsPrevX, filtLidarPointsCurrX;
  16. // Create vector of all x points from previous and current Lidar points
  17. for (auto it = lidarPointsPrev.begin(); it != lidarPointsPrev.end(); ++it)
  18. {
  19. lidarPointsPrevX.push_back(it->x);
  20. }
  21. for (auto it = lidarPointsCurr.begin(); it != lidarPointsCurr.end(); ++it)
  22. {
  23. lidarPointsCurrX.push_back(it->x);
  24. }
  25. // Filter out outliers from the X-distance vector
  26. filtLidarPointsPrevX = removeOutliers(lidarPointsPrevX);
  27. filtLidarPointsCurrX = removeOutliers(lidarPointsCurrX);
  28. // find closest distance to Lidar points within ego lane
  29. double minXPrev = INT_MAX, minXCurr = INT_MAX;
  30. for (auto it = filtLidarPointsPrevX.begin(); it != filtLidarPointsPrevX.end(); ++it)
  31. {
  32. minXPrev = minXPrev > *it ? *it : minXPrev;
  33. }
  34. for (auto it = filtLidarPointsCurrX.begin(); it != filtLidarPointsCurrX.end(); ++it)
  35. {
  36. minXCurr = minXCurr > *it ? *it : minXCurr;
  37. }
  38. // compute TTC from both measurements
  39. TTC = minXCurr * dT / (minXPrev - minXCurr);
  40. // Compute velocity
  41. velLidar = (minXPrev - minXCurr) / dT;
  42. }
  43. /**
  44. * @brief Function to remove outliers based on IQR
  45. *
  46. * @param data Input dataset
  47. * @return std::vector<double> Filtered dataset
  48. */
  49. std::vector<double> removeOutliers(const std::vector<double> &data)
  50. {
  51. std::vector<double> sorted_data = data;
  52. std::sort(sorted_data.begin(), sorted_data.end());
  53. double q1 = percentile(sorted_data, 0.25);
  54. double q3 = percentile(sorted_data, 0.75);
  55. double iqr = q3 - q1;
  56. std::vector<double> filtered_data;
  57. for (double x : data)
  58. {
  59. if (x >= q1 - 1.5 * iqr && x <= q3 + 1.5 * iqr)
  60. {
  61. filtered_data.push_back(x);
  62. }
  63. }
  64. return filtered_data;
  65. }
  66. /**
  67. * @brief Function to calculate the percentile of a sorted dataset
  68. *
  69. * @param dataIn Input dataset
  70. * @param p Percentile
  71. * @return double Value of the percentile
  72. */
  73. double percentile(const std::vector<double> &dataIn, double p)
  74. {
  75. std::vector<double> data = dataIn;
  76. std::sort(data.begin(), data.end());
  77. int N = data.size();
  78. double n = (N - 1) * p + 1;
  79. // If n is an integer, then percentile is a data point
  80. if (n == floor(n))
  81. {
  82. return data[n - 1];
  83. }
  84. else
  85. {
  86. int k = floor(n);
  87. double d = n - k;
  88. return data[k - 1] + d * (data[k] - data[k - 1]);
  89. }
  90. }

下面的图表显示了所有18个连续帧的 LiDAR TTC 值。TTC 值不一致且变化很大。这可能是因为使用恒定速度模型计算 TTC。这不是一个好的假设,因为前车的速度并非恒定。图像中的红线显示了如果使用恒定速度模型时的 TTC。

另一个原因可能是由于使用 Lidar 点的最小 X 距离计算 TTC,这是一个单一点。这个点也可能是噪声。通过使用 Lidar 点的 X 距离的中值,这可能会得到改善。

2b8a8062601d1ee17c8b4633399efd94.jpeg

使用相机计算 TTC

这一步使用仅相机计算前车的时间到碰撞(TTC)。

通过测量连续的距离,可以使用 3D Lidar 传感器计算 TTC。然而,使用 2D 相机进行 TTC 计算是具有挑战性的,原因是缺乏 3D 测量和用于运动跟踪的准确车辆识别。

单眼相机无法测量度量距离。它们是依赖于环境光的被反射到相机镜头中的被动传感器。因此,与 Lidar 技术测量光的运行时不同,无法测量光的运行时。

为了测量对象之间的距离,可以使用两个对齐的相机来定位两个图像中的共同兴趣点并三角测量它们的距离。然而,由于其体积大、成本高以及找到对应特征的计算负载,立体相机在 ADAS 和自动驾驶车辆中变得不太受欢迎。

尽管单眼相机有其局限性,我们仍然可以尝试在没有距离测量的情况下计算 TTC。我们将使用恒定速度运动模型,并用相机可以准确测量的图像平面上的像素距离替换度量距离。

在下图中,您可以看到前车的高度 H 如何通过透视投影映射到图像平面上。我们可以看到相同的高度 H 在图像平面上取决于车辆的距离 d0 和 d1。显然,高度 h,H,d 和针孔相机的焦距 f 之间存在几何关系 —— 这就是我们想要在下文中利用的。

f3b91653233c2a553e19c10fdcbe5595.jpeg

以下一组方程显示了如何仅使用投影计算 TTC。

df630a7f98b11a961c8d77c82eb03bba.jpeg使用相机计算 TTC

因此,通过观察图像传感器上的相对高度变化,可以测量时间到碰撞。不需要距离测量,因此我们可以使用单眼相机通过直接观察图像中相对高度(也称为尺度变化)的变化来估计时间到碰撞。

神经网络(YOLO)为每辆车返回一个边界框,但它们的尺寸可能不准确。使用边界框的高度或宽度进行 TTC 计算将导致显著的误差。

与依赖于整个车辆的检测不同,我们现在希望在较小的尺度上分析其结构。如果能够找到可以从一帧跟踪到下一帧的唯一可识别的关键点,我们可以使用车辆上所有关键点之间的距离相对于彼此的距离来计算 TTC 方程中高度比的鲁棒估计。下图说明了这个概念。

3084250b50bfd7b6bc72771cde0a693a.jpeg关键点缩放

在(a)中,已检测到一组关键点,并计算了关键点 1-7 之间的相对距离。在(b)中,使用称为描述符的高维相似性测量,成功地匹配了连续图像之间的 4 个关键点(其中关键点 3 不匹配)。

可以使用彼此之间所有相对距离的比率来计算可靠的 TTC 估计,方法是将高度比 ℎ1/ℎ0 替换为所有距离比率 dk/dk` 的均值或中值。

以下代码实现了先前的概念。同样,为了使 TTC 对离群值具有鲁棒性,我们使用 IQR 方法。

  1. /**
  2. * @brief Compute time-to-collision (TTC) based on keypoint correspondences in successive images
  3. *
  4. * @param kptsPrev Previous frame keypoints
  5. * @param kptsCurr Current frame keypoints
  6. * @param kptMatches Keypoint matches between previous and current frame
  7. * @param frameRate Frame rate of the camera
  8. * @param TTC Output TTC
  9. * @param visImg Output visualization image
  10. */
  11. void computeTTCCamera(std::vector<cv::KeyPoint> &kptsPrev, std::vector<cv::KeyPoint> &kptsCurr,
  12. std::vector<cv::DMatch> kptMatches, double frameRate, double &TTC, cv::Mat *visImg)
  13. {
  14. /* STEP 1: Compute distance ratios between all matched keypoints*/
  15. vector<double> distRatios; // stores the distance ratios for all keypoints between curr. and prev. frame
  16. for (auto it1 = kptMatches.begin(); it1 != kptMatches.end() - 1; ++it1)
  17. { // outer keypoint match loop
  18. // get current keypoint and its matched partner in the prev. frame
  19. cv::KeyPoint kpOuterCurr = kptsCurr.at(it1->trainIdx);
  20. cv::KeyPoint kpOuterPrev = kptsPrev.at(it1->queryIdx);
  21. for (auto it2 = kptMatches.begin() + 1; it2 != kptMatches.end(); ++it2)
  22. { // inner keypoint match loop
  23. double minDist = 100.0; // min. required distance in pixels
  24. // get next keypoint and its matched partner in the prev. frame
  25. cv::KeyPoint kpInnerCurr = kptsCurr.at(it2->trainIdx);
  26. cv::KeyPoint kpInnerPrev = kptsPrev.at(it2->queryIdx);
  27. // compute distances and distance ratios
  28. double distCurr = cv::norm(kpOuterCurr.pt - kpInnerCurr.pt);
  29. double distPrev = cv::norm(kpOuterPrev.pt - kpInnerPrev.pt);
  30. if (distPrev > std::numeric_limits<double>::epsilon() && distCurr >= minDist)
  31. { // avoid division by zero
  32. double distRatio = distCurr / distPrev;
  33. distRatios.push_back(distRatio);
  34. }
  35. } // eof inner loop over all matched kpts
  36. } // eof outer loop over all matched kpts
  37. // only continue if list of distance ratios is not empty
  38. if (distRatios.size() == 0)
  39. {
  40. TTC = NAN;
  41. return;
  42. }
  43. /* STEP 2: Filter out outliers from the distance ratio vector*/
  44. // Remove the outliers from the distance ratio vector
  45. std::vector<double> filtDistRatios = removeOutliers(distRatios);
  46. /* STEP 3: Compute camera-based TTC from distance ratios*/
  47. // compute camera-based TTC from mean distance ratios
  48. double meanDistRatio = std::accumulate(filtDistRatios.begin(), filtDistRatios.end(), 0.0) / filtDistRatios.size();
  49. double dT = 1 / frameRate;
  50. // TTC = -dT / (1 - meanDistRatio);
  51. // Alternate method to compute camera-based TTC from distance ratios using median
  52. double medianDistRatio;
  53. std::sort(filtDistRatios.begin(), filtDistRatios.end());
  54. if (distRatios.size() % 2 == 0)
  55. {
  56. medianDistRatio = (filtDistRatios[filtDistRatios.size() / 2 - 1] + filtDistRatios[filtDistRatios.size() / 2]) / 2;
  57. }
  58. else
  59. {
  60. medianDistRatio = filtDistRatios[filtDistRatios.size() / 2];
  61. }
  62. TTC = -dT / (1 - medianDistRatio);
  63. }

上述 TTC 计算是针对多种检测器-描述符组合进行的。在所有组合中,对于以下组合,获得了最佳的 TTC 相机数值:

为了获得快速执行时间:FAST — ORB

为了获得良好的准确性:SHITOMASI — BRIEF

1daf12a7515c7615c300480622c39dc2.jpeg

正如图中所示,在绘制中,与其他组合相比,SHITOMASI — BRIEF 组合的 TTC 计算非常一致且变化较小。FAST — ORB 组合的 TTC 计算与 TTC Lidar 值不太接近,且变化较大。这可能是因为 FAST 检测器对照明和视点变化不太稳健,而 ORB 描述符对视角变化也不太稳健。这可能是 FAST — ORB 组合性能较差的原因。此外,边界框并不总是完美地包含仅包含前置对象的部分,有时还包含来自道路某些部分的关键点匹配。

·  END  ·

HAPPY LIFE

fdf93db108331b9d4bc7402b3f057f3b.png

本文仅供学习交流使用,如有侵权请联系作者删除

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

闽ICP备14008679号