Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(surround_obstacle_checker): integrate generate_parameter_library #8719

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove default values
Signed-off-by: mitukou1109 <mitukou1109@gmail.com>
  • Loading branch information
mitukou1109 authored and satoshi-ota committed Sep 5, 2024
commit c48cf4fcea85290fd73441d12e81d86beb6717b2
Original file line number Diff line number Diff line change
Expand Up @@ -2,66 +2,56 @@ surround_obstacle_checker_node:
pointcloud:
enable_check:
type: bool
default_value: false
description: Enable to check surrounding obstacle
object_types:
type: string_array
default_value: [unknown, car, truck, bus, trailer, motorcycle, bicycle, pedestrian]
satoshi-ota marked this conversation as resolved.
Show resolved Hide resolved
__map_object_types:
enable_check:
type: bool
default_value: true
description: Enable to check surrounding obstacle
obstacle_types:
type: string_array
default_value: [pointcloud, unknown, car, truck, bus, trailer, motorcycle, bicycle, pedestrian]
satoshi-ota marked this conversation as resolved.
Show resolved Hide resolved
__map_obstacle_types:
surround_check_front_distance:
type: double
default_value: 0.5
description: If objects exist in this distance, transit to 'exist-surrounding-obstacle' status. [m]
validation:
gt_eq<>: [0.0]
surround_check_side_distance:
type: double
default_value: 0.5
description: If objects exist in this distance, transit to 'exist-surrounding-obstacle' status. [m]
validation:
gt_eq<>: [0.0]
surround_check_back_distance:
type: double
default_value: 0.5
description: If objects exist in this distance, transit to 'exist-surrounding-obstacle' status. [m]
validation:
gt_eq<>: [0.0]
surround_check_hysteresis_distance:
type: double
default_value: 0.3
description:
If no object exists in this hysteresis distance added to the above distance, transit to
'non-surrounding-obstacle' status [m]
validation:
gt_eq<>: [0.0]
state_clear_time:
type: double
default_value: 2.0
description: Threshold to clear stop state [s]
validation:
gt_eq<>: [0.0]
stop_state_ego_speed:
type: double
default_value: 0.1
description: Threshold to check ego vehicle stopped [m/s]
validation:
gt_eq<>: [0.0]
publish_debug_footprints:
type: bool
default_value: true
description: Publish vehicle footprint & footprints with surround_check_distance and
surround_check_recover_distance offsets.
debug_footprint_label:
type: string
default_value: car
description: Select the label for debug footprint
validation:
one_of<>: [[pointcloud, unknown, car, truck, bus, trailer, motorcycle, bicycle, pedestrian]]
Loading