-
Notifications
You must be signed in to change notification settings - Fork 646
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
refactor(autoware_pointcloud_preprocessor): rework random downsample filter parameters #8485
refactor(autoware_pointcloud_preprocessor): rework random downsample filter parameters #8485
Conversation
Signed-off-by: vividf <[email protected]>
Signed-off-by: vividf <[email protected]>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8485 +/- ##
==========================================
- Coverage 27.84% 23.78% -4.06%
==========================================
Files 1324 1413 +89
Lines 98838 103175 +4337
Branches 39680 39599 -81
==========================================
- Hits 27523 24542 -2981
- Misses 71281 76275 +4994
- Partials 34 2358 +2324
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -58,7 +58,7 @@ RandomDownsampleFilterComponent::RandomDownsampleFilterComponent( | |||
{ | |||
// set initial parameters | |||
{ | |||
sample_num_ = static_cast<size_t>(declare_parameter("sample_num", 1500)); |
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.
types do no coincide
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.
@knzo25 thanks! However, declare_parameter<size_t> doesn't work for ros2 parameter. (compile will failed)
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.
Same reply as other PRs
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! Fixed in 9d3fb7f
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.
Just one data type-related comment
Signed-off-by: vividf <[email protected]>
…github.com:vividf/autoware.universe into refactor/rework_random_downsample_filter_parameter
@knzo25 kindly ping |
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.
LGTM
…filter parameters (autowarefoundation#8485) * feat: rework random downsample filter parameter Signed-off-by: vividf <[email protected]> * chore: change name Signed-off-by: vividf <[email protected]> * chore: add explicit cast Signed-off-by: vividf <[email protected]> --------- Signed-off-by: vividf <[email protected]> Co-authored-by: Kenzo Lobos Tsunekawa <[email protected]> Signed-off-by: Batuhan Beytekin <[email protected]>
…filter parameters (autowarefoundation#8485) * feat: rework random downsample filter parameter Signed-off-by: vividf <[email protected]> * chore: change name Signed-off-by: vividf <[email protected]> * chore: add explicit cast Signed-off-by: vividf <[email protected]> --------- Signed-off-by: vividf <[email protected]> Co-authored-by: Kenzo Lobos Tsunekawa <[email protected]> Signed-off-by: Batuhan Beytekin <[email protected]>
Description
This PR includes the following changes
nodelet
tonode
.A big thank you to @Ariiees for the PRs (#8297 and #7422), where we worked together on the entire pointcloud preprocessor parameters, launch file, and schema.
Related links
Parent Issue:
How was this PR tested?
ros2 launch autoware_pointcloud_preprocessor random_downsample_filter_node.launch.xml
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.