Skip to content

Commit

Permalink
change detected_objects_filter as position_filter
Browse files Browse the repository at this point in the history
Signed-off-by: Sena <[email protected]>

disable traffic_light module

Signed-off-by: Sena <[email protected]>

change object_position_filter param

Signed-off-by: Sena <[email protected]>

enable speed_bump_module and tune

Signed-off-by: Sena <[email protected]>

change motion_stop_planner type

Signed-off-by: Sena <[email protected]>

disable emergency

Signed-off-by: Sena <[email protected]>

add comment line

Signed-off-by: Sena <[email protected]>
  • Loading branch information
senagolcuk committed Feb 21, 2024
1 parent 9b750b1 commit 940180f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
delay_compensation_time: 0.17

enable_smooth_stop: true
enable_overshoot_emergency: true
enable_large_tracking_error_emergency: true
enable_overshoot_emergency: false
enable_large_tracking_error_emergency: false
enable_slope_compensation: true
enable_keep_stopped_until_steer_convergence: true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
BICYCLE : false
PEDESTRIAN : false

upper_bound_x: 100.0
upper_bound_x: 50.0
lower_bound_x: 0.0
upper_bound_y: 10.0
lower_bound_y: -10.0
6 changes: 3 additions & 3 deletions autoware_launch/config/planning/preset/default_preset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ launch:
default: "true"
- arg:
name: launch_traffic_light_module
default: "true"
default: "false"
- arg:
name: launch_intersection_module
default: "true"
Expand Down Expand Up @@ -73,7 +73,7 @@ launch:
default: "true"
- arg:
name: launch_speed_bump_module
default: "false"
default: "true"
- arg:
name: launch_out_of_lane_module
default: "true"
Expand All @@ -100,7 +100,7 @@ launch:

- arg:
name: motion_stop_planner_type
default: obstacle_stop_planner
default: obstacle_cruise_planner
# option: obstacle_stop_planner
# obstacle_cruise_planner
# none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
speed_calculation:
min_height: 0.05 # [m]
max_height: 0.30 # [m]
min_speed: 1.39 # [m/s] = [5 kph]
max_speed: 2.78 # [m/s] = [10 kph]
min_speed: 2.5 # [m/s] = [9 kph]
max_speed: 3.34 # [m/s] = [12 kph]
4 changes: 2 additions & 2 deletions autoware_launch/launch/autoware.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
<!-- Tools -->
<arg name="rviz" default="true" description="launch rviz"/>
<arg name="rviz_config" default="$(find-pkg-share autoware_launch)/rviz/autoware.rviz" description="rviz config"/>
<arg name="rviz_respawn" default="true"/>
<arg name="rviz_respawn" default="false"/>
<!-- Perception -->
<arg name="perception_mode" default="lidar" description="select perception mode. camera_lidar_radar_fusion, camera_lidar_fusion, lidar_radar_fusion, lidar, radar"/>
<arg name="traffic_light_recognition/enable_fine_detection" default="true" description="enable traffic light fine detection"/>
<arg name="traffic_light_recognition/enable_fine_detection" default="false" description="enable traffic light fine detection"/>
<!-- Auto mode setting-->
<arg name="enable_all_modules_auto_mode" default="false" description="enable all module's auto mode"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<let name="loc_config_path" value="$(find-pkg-share autoware_launch)/config/localization"/>
<arg name="pose_source" default="ndt" description="select pose_estimator: ndt, yabloc, eagleye"/>
<arg name="twist_source" default="gyro_odom" description="select twist_estimator. gyro_odom, eagleye"/>
<!-- maybe topic name: default="/sensing/lidar/top/pointcloud_raw_ex" -->
<arg name="input_pointcloud" default="/sensing/lidar/top/pointcloud" description="The topic will be used in the localization util module"/>
<arg
name="lidar_container_name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<launch>
<arg name="occupancy_grid_map_method" default="pointcloud_based_occupancy_grid_map" description="options: pointcloud_based_occupancy_grid_map, laserscan_based_occupancy_grid_map"/>
<arg name="occupancy_grid_map_updater" default="binary_bayes_filter" description="options: binary_bayes_filter"/>
<arg name="detected_objects_filter_method" default="lanelet_filter" description="options: lanelet_filter, position_filter"/>
<arg name="detected_objects_filter_method" default="position_filter" description="options: lanelet_filter, position_filter"/>
<arg
name="detected_objects_validation_method"
default="obstacle_pointcloud"
Expand Down

0 comments on commit 940180f

Please sign in to comment.