Skip to content

Commit

Permalink
feat: sp tuning for low obstacle (autowarefoundation#578)
Browse files Browse the repository at this point in the history
* feat: tune condition of between cruise and stop (autowarefoundation#565)

Tune condition of between cruise and stop

* fix(traffic_light): stop if the traffic light signal timed out (autowarefoundation#727) (autowarefoundation#571)

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>

* feat(component_state_monitor): monitor traffic light recognition outp… (autowarefoundation#572)

feat(component_state_monitor): monitor traffic light recognition output (autowarefoundation#720)

Signed-off-by: Tomohito Ando <tomohito.ando@tier4.jp>

* update ground segmentation

Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>

* update comparemap parameter

Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>

* update clustering parameters

Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>

* fix tracking iou threshold parameters

Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>

* feat: set smaller  threshold for euclidean clustering

Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>

* chore: fit parameter for v3.0.0

Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>

---------

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
Signed-off-by: Tomohito Ando <tomohito.ando@tier4.jp>
Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
Co-authored-by: Shohei Sakai <saka1s.jp@gmail.com>
Co-authored-by: Tomohito ANDO <tomohito.ando@tier4.jp>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: Shinnosuke Hirakawa <8327162+0x126@users.noreply.github.com>
  • Loading branch information
5 people committed Mar 11, 2024
1 parent df21eb9 commit c4c9ff0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
tolerance: 0.7
voxel_leaf_size: 0.3
min_points_number_per_voxel: 1
min_cluster_size: 10
min_cluster_size: 3
max_cluster_size: 3000
use_height: false
input_frame: "base_link"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
ros__parameters:

# voxel size for downsample filter
down_sample_voxel_size: 0.1
down_sample_voxel_size: 0.05

# distance threshold for compare compare
distance_threshold: 0.5

# ratio to reduce voxel_leaf_size and neighbor points distance threshold in z axis
downsize_ratio_z_axis: 0.6
downsize_ratio_z_axis: 0.3

# publish voxelized map pointcloud for debug
publish_debug_pcd: False
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

min_iou_matrix: # If value is negative, it will be ignored.
#UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE, PEDESTRIAN
[0.0001, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, #UNKNOWN
[0.0, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, #UNKNOWN
0.1, 0.1, 0.2, 0.2, 0.2, 0.1, 0.1, 0.1, #CAR
0.1, 0.2, 0.3, 0.3, 0.3, 0.1, 0.1, 0.1, #TRUCK
0.1, 0.2, 0.3, 0.3, 0.3, 0.1, 0.1, 0.1, #BUS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**:
ros__parameters:
additional_lidars: []
additional_lidars: ["front_lower"]
ransac_input_topics: []
use_single_frame_filter: False
use_time_series_filter: True
Expand All @@ -20,10 +20,10 @@
parameters:
global_slope_max_angle_deg: 10.0
local_slope_max_angle_deg: 25.0 # recommended 30.0 for non elevation_grid_mode
split_points_distance_tolerance: 0.2
split_points_distance_tolerance: 0.15
use_virtual_ground_point: True
split_height_distance: 0.2
non_ground_height_threshold: 0.20
non_ground_height_threshold: 0.12
grid_size_m: 0.2
grid_mode_switch_radius: 20.0
gnd_grid_buffer_size: 5
Expand Down Expand Up @@ -54,7 +54,7 @@
global_slope_max_angle_deg: 10.0
local_slope_max_angle_deg: 18.0 # recommended 30.0 for non elevation_grid_mode
split_points_distance_tolerance: 0.20 # recommended 0.045 for non elevation_grid_mode
split_height_distance: 0.2 # recommended 0.15 for non elevation_grid_mode
split_height_distance: 0.15 # recommended 0.15 for non elevation_grid_mode
use_virtual_ground_point: False
non_ground_height_threshold: 0.1
grid_size_m: 0.1
Expand All @@ -79,14 +79,14 @@
parameters:
global_slope_max_angle_deg: 10.0
local_slope_max_angle_deg: 18.0 # recommended 30.0 for non elevation_grid_mode
split_points_distance_tolerance: 0.20 # recommended 0.1 for non elevation_grid_mode
split_height_distance: 0.2 # recommended 0.05 for non elevation_grid_mode
use_virtual_ground_point: False
split_points_distance_tolerance: 0.10 # recommended 0.1 for non elevation_grid_mode
split_height_distance: 0.05 # recommended 0.05 for non elevation_grid_mode
use_virtual_ground_point: true
non_ground_height_threshold: 0.1
grid_size_m: 0.1
grid_mode_switch_radius: 20.0
gnd_grid_buffer_size: 4
detection_range_z_max: 3.2
center_pcl_shift: 0.0
elevation_grid_mode: true
elevation_grid_mode: false
use_recheck_ground_cluster: false

0 comments on commit c4c9ff0

Please sign in to comment.