We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48aeb30 commit c2beb74Copy full SHA for c2beb74
selfdrive/controls/lib/lane_planner.py
@@ -9,17 +9,16 @@
9
10
TRAJECTORY_SIZE = 33
11
# camera offset is meters from center car to camera
12
-# model path is in the frame of EON's camera. TICI is 0.1 m away,
13
-# however the average measured path difference is 0.04 m
+# model path is in the frame of the camera. Empirically
+# the model knows the difference between TICI and EON
14
+# so a path offset is not needed
15
+PATH_OFFSET = 0.00
16
if EON:
17
CAMERA_OFFSET = -0.06
- PATH_OFFSET = 0.0
18
elif TICI:
19
CAMERA_OFFSET = 0.04
- PATH_OFFSET = 0.04
20
else:
21
CAMERA_OFFSET = 0.0
22
23
24
25
class LanePlanner:
0 commit comments