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(autoware_planning_validator): add collision checking for predicted objects #1206

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,18 @@
# Setting it to 0 means an error will occur if even slightly exceeding the end of the path,
# therefore, a certain margin is necessary.
forward_trajectory_length_margin: 2.0

# Threshold to filter out objects that are far from the trajectory.
# Only objects within this distance [m] from their nearest point on the trajectory
# are considered for collision checking to improve computational efficiency.
trajectory_to_object_distance_threshold: 30.0

# Threshold to filter out objects that are far from the ego vehicle.
# Only objects within this distance [m] from the current ego position
# are considered for collision checking to improve computational efficiency.
ego_to_object_distance_threshold: 50.0

# Time tolerance threshold [s] for collision detection between ego and object trajectories.
# Collision check is performed only when the time difference between ego and object
# predicted positions is within this threshold to detect temporal-spatial intersections.
time_tolerance_threshold: 0.1
Loading