-
Notifications
You must be signed in to change notification settings - Fork 658
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
chore(tier4_perception_launch): perception launcher refactoring #7194
chore(tier4_perception_launch): perception launcher refactoring #7194
Conversation
c685684
to
9cc27c6
Compare
368d0b6
to
869c5f9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be beneficial to avoid using default values in lower-level launch files.
To be specific:
- tier4_perception_component.launch.xml: Define parameters that are likely to change here, in this central launch file.
- perception.launch.xml: Avoid using default arguments. Only parameters that are difficult to specify in tier4_perception_component.launch.xml should be provided here.
- Subsequent Launch Files: Avoid using default arguments in launch files called from perception.launch.xml
This is just my suggestion. What are your thoughts on this approach?
@miursh |
869c5f9
to
72968d4
Compare
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
chore: simplify mode check Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
72968d4
to
911bdc3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! LGTM
* fix: reorder object merger launchers Signed-off-by: Taekjin LEE <[email protected]> * fix: separate detection by tracker launch Signed-off-by: Taekjin LEE <[email protected]> * fix: refactor tracking launch Signed-off-by: Taekjin LEE <[email protected]> * style(pre-commit): autofix Signed-off-by: Taekjin LEE <[email protected]> * fix: input pointcloud topic names, mot input channels Signed-off-by: Taekjin LEE <[email protected]> * feat: separate filters Signed-off-by: Taekjin LEE <[email protected]> * fix: object validator to modular Signed-off-by: Taekjin LEE <[email protected]> * fix: implement filters on mergers Signed-off-by: Taekjin LEE <[email protected]> * fix lidar only mode chore: simplify mode check Signed-off-by: Taekjin LEE <[email protected]> * fix: fix a bug when use_radar_tracking_fusion is fault Signed-off-by: Taekjin LEE <[email protected]> * fix: rename radar detector to filter Signed-off-by: Taekjin LEE <[email protected]> --------- Signed-off-by: Taekjin LEE <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Description
The perception has many launch options, such as
perception_mode
,lidar_detection_model
,use_*
, and so on.As result, it is very difficult to trace the perception pipeline, such as which SW component is used, which topic is published from where.
Structure of the perception launch style
Module update
Tests performed
Manually tested in a local environment with the following variants.
Effects on system behavior
Not applicable.
Interface changes
Not applicable.
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.