-
Notifications
You must be signed in to change notification settings - Fork 682
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(lidar_centerpoint): yaw norm filter #1728
feat(lidar_centerpoint): yaw norm filter #1728
Conversation
@yukke42 should I add a certain value to the parameter from the launcher? |
Codecov Report
@@ Coverage Diff @@
## main #1728 +/- ##
==========================================
- Coverage 10.80% 10.26% -0.54%
==========================================
Files 1217 1204 -13
Lines 81490 86657 +5167
Branches 20225 20020 -205
==========================================
+ Hits 8804 8899 +95
- Misses 63495 68497 +5002
- Partials 9191 9261 +70
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@yukke42 |
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
* Added a filter by the norm of the yaw * Fixed typos and tested with rosbags * Added the yaw norm parameter in the launch file
* Added a filter by the norm of the yaw * Fixed typos and tested with rosbags * Added the yaw norm parameter in the launch file
* Added a filter by the norm of the yaw * Fixed typos and tested with rosbags * Added the yaw norm parameter in the launch file
* Added a filter by the norm of the yaw * Fixed typos and tested with rosbags * Added the yaw norm parameter in the launch file
* Added a filter by the norm of the yaw * Fixed typos and tested with rosbags * Added the yaw norm parameter in the launch file
Description
Added a filter to the centerpoint estimations to ignore detections that have a yaw angle norm below a certain threshold.
Centerpoint rather than estimate the rotation directly, estimates the cosine and sine of the angle.
As such the norm of the cos/sin pair should be unitary, but since the inference does not enforce this property, it may not hold.
Empirically, in those cases where the property does not hold, there is a high chance that the detection is wrong, so we filter them out.
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.