上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 28 下一页
摘要: 定位 所有无人驾驶车要安全畅游全球,都必须经过一系列相同的步骤。 你一直在学习第一步:定位。在车辆能够安全驾驶之前,它们首先要使用传感器和收集的其他数据对它们所处的位置做出最佳估计。 定位 所有无人驾驶车要安全畅游全球,都必须经过一系列相同的步骤。 你一直在学习第一步:定位。在车辆能够安全驾驶之前, 阅读全文
posted @ 2018-05-04 08:49 未完代码 阅读(245) 评论(0) 推荐(0) 编辑
摘要: struct 结构体名称{ 数据类型 A; 数据类型 B; }结构体变量名; 相当于: struct 结构体名称{ 数据类型 A; 数据类型 B; }; struct 结构体名称 结构体变量名; 这种方式既定义了结构体名称,同时声明了一个结构体变量名。在其它地方也可以通过struct 结构体来再次声 阅读全文
posted @ 2018-05-03 17:01 未完代码 阅读(989) 评论(0) 推荐(0) 编辑
摘要: Designing cost functions is difficult and getting them all to cooperate to produce reasionable vehicle behavior is hard. some of the difficulties asso 阅读全文
posted @ 2018-05-03 15:09 未完代码 阅读(379) 评论(0) 推荐(0) 编辑
摘要: n most situations, a single cost function will not be sufficient to produce complex vehicle behavior. In this quiz, we'd like you to implement one mor 阅读全文
posted @ 2018-05-03 12:12 未完代码 阅读(325) 评论(0) 推荐(0) 编辑
摘要: In the previous quizzes, you designed a cost function to choose a lane when trying to reach a goal in highway driving: cost=1−e​−​​∣Δd∣​​​​/​Δs Here,  阅读全文
posted @ 2018-05-03 11:47 未完代码 阅读(311) 评论(0) 推荐(0) 编辑
摘要: In the image above, the blue self driving car (bottom left) is trying to get to the goal (gold star). It's currently in the correct lane but the green 阅读全文
posted @ 2018-05-03 11:33 未完代码 阅读(289) 评论(0) 推荐(0) 编辑
摘要: A key part of getting transitions to happen when we want them to is the design of reasonable cost functions. we want to penalize and reward the right 阅读全文
posted @ 2018-05-03 10:37 未完代码 阅读(266) 评论(0) 推荐(0) 编辑
摘要: One way to implement a transition function is by generating rough trajectories for each accessible "next state" and then finding the best. To "find th 阅读全文
posted @ 2018-05-03 09:30 未完代码 阅读(305) 评论(0) 推荐(0) 编辑
摘要: the answer is that we have to pass all of the data into transition function except for the previous state. 阅读全文
posted @ 2018-05-03 09:24 未完代码 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 现在你已经明白如何整合测量, 如何整合运动,完成了一维卡尔曼滤波,不过在现实中我们经常遇到多维的情况。 这就涉及到很多因素,举例,并说明为什么在较多纬度状态空间中估测很重要。 假设你有一个x和y的二维空间-比如一幅摄像头图像,或者在我们的例子中 我们可能采用一辆载有雷达的汽车来检测 车辆随着时间变化 阅读全文
posted @ 2018-05-03 08:59 未完代码 阅读(5863) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 28 下一页