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

refactor(pointcloud_preprocessor): publish noise points in ring outlier filter #6581

Conversation

kyoichi-sugahara
Copy link
Contributor

@kyoichi-sugahara kyoichi-sugahara commented Mar 10, 2024

Description

image

Refactor for the PR

  • Renamed the publish_excluded_points flag to publish_noise_points.
  • Removed the extractExcludedPoints function
  • Defined setUpPointCloudFormat to consolidate duplicate processes
  • Renamed horizontal_res to horizontal_resolution.

Tests performed

confirmed with logging simulator

How to check this feature

described in the PR

Effects on system behavior

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.

  • There are no open discussions or they are tracked via tickets.

After all checkboxes are checked, anyone who has write access can merge the PR.

@github-actions github-actions bot added type:documentation Creating or refining documentation. (auto-assigned) component:sensing Data acquisition from sensors, drivers, preprocessing. (auto-assigned) labels Mar 10, 2024
@kyoichi-sugahara kyoichi-sugahara marked this pull request as ready for review March 12, 2024 08:00
- Removed the `extractExcludedPoints` function
- Defined `setUpPointCloudFormat` to consolidate duplicate processes
- Renamed `horizontal_res` to `horizontal_resolution`.

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
@kyoichi-sugahara kyoichi-sugahara force-pushed the refactor/publish_noise_points_in_ring_outlier_filter branch from c75e1f7 to cf1177c Compare March 13, 2024 05:59
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
@kyoichi-sugahara kyoichi-sugahara force-pushed the refactor/publish_noise_points_in_ring_outlier_filter branch from cf1177c to d85eabb Compare March 13, 2024 06:23
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Copy link
Contributor

@yukkysaito yukkysaito left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Contributor

@badai-nguyen badai-nguyen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I confirmed by logging_simulator that debug topic can be published as purple pointcloud in the figure.
image

@kyoichi-sugahara kyoichi-sugahara added the run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci) label Mar 13, 2024
Copy link

codecov bot commented Mar 13, 2024

Codecov Report

Attention: Patch coverage is 0% with 49 lines in your changes are missing coverage. Please review.

Project coverage is 14.79%. Comparing base (fc2b2c6) to head (77c0ab4).
Report is 3 commits behind head on main.

Files Patch % Lines
...src/outlier_filter/ring_outlier_filter_nodelet.cpp 0.00% 44 Missing ⚠️
...lier_filter/dual_return_outlier_filter_nodelet.cpp 0.00% 5 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #6581      +/-   ##
==========================================
- Coverage   14.79%   14.79%   -0.01%     
==========================================
  Files        1915     1915              
  Lines      132361   132368       +7     
  Branches    39339    39339              
==========================================
  Hits        19581    19581              
- Misses      90946    90953       +7     
  Partials    21834    21834              
Flag Coverage Δ *Carryforward flag
differential 5.50% <0.00%> (?)
total 14.79% <ø> (+<0.01%) ⬆️ Carriedforward from fc2b2c6

*This pull request uses carry forward flags. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@kyoichi-sugahara kyoichi-sugahara merged commit 283ff47 into autowarefoundation:main Mar 13, 2024
36 of 39 checks passed
@kyoichi-sugahara kyoichi-sugahara deleted the refactor/publish_noise_points_in_ring_outlier_filter branch March 13, 2024 08:37
yhisaki pushed a commit to yhisaki/autoware.universe that referenced this pull request Mar 15, 2024
…er filter (autowarefoundation#6581)

* - Renamed the `publish_excluded_points` flag to `publish_noise_points`.
- Removed the `extractExcludedPoints` function
- Defined `setUpPointCloudFormat` to consolidate duplicate processes
- Renamed `horizontal_res` to `horizontal_resolution`.

* change from publish_noise_points to publish_outlier_pointcloud

* change namespace of topic

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>

---------

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
kaigohirao pushed a commit to kaigohirao/autoware.universe that referenced this pull request Mar 22, 2024
…er filter (autowarefoundation#6581)

* - Renamed the `publish_excluded_points` flag to `publish_noise_points`.
- Removed the `extractExcludedPoints` function
- Defined `setUpPointCloudFormat` to consolidate duplicate processes
- Renamed `horizontal_res` to `horizontal_resolution`.

* change from publish_noise_points to publish_outlier_pointcloud

* change namespace of topic

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>

---------

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: kaigohirao <kaigo.hirao@proxima-ai-tech.com>
karishma1911 pushed a commit to Interplai/autoware.universe that referenced this pull request Jun 3, 2024
…er filter (autowarefoundation#6581)

* - Renamed the `publish_excluded_points` flag to `publish_noise_points`.
- Removed the `extractExcludedPoints` function
- Defined `setUpPointCloudFormat` to consolidate duplicate processes
- Renamed `horizontal_res` to `horizontal_resolution`.

* change from publish_noise_points to publish_outlier_pointcloud

* change namespace of topic

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>

---------

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component:sensing Data acquisition from sensors, drivers, preprocessing. (auto-assigned) run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci) type:documentation Creating or refining documentation. (auto-assigned)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants