-
Notifications
You must be signed in to change notification settings - Fork 673
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
perf(obstacle_stop_planner): prevent unnecessary duplicate points #1486
perf(obstacle_stop_planner): prevent unnecessary duplicate points #1486
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1486 +/- ##
==========================================
+ Coverage 10.28% 10.72% +0.43%
==========================================
Files 1205 1103 -102
Lines 86829 78410 -8419
Branches 20079 18649 -1430
==========================================
- Hits 8931 8409 -522
+ Misses 68602 61087 -7515
+ Partials 9296 8914 -382
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
3967174
to
aa70d95
Compare
c5de73b
to
829f210
Compare
…ectory Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
829f210
to
bce2598
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.
…er4#1486) Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
…er4#1486) Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
…er4#1486) Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
…towarefoundation#1486) Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
…er4#1486) Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
…_thread_0.29 fix(goal_planner): remove time keeper in non main thread (autowarefoundation#8610)
Signed-off-by: Maxime CLEMENT maxime.clement@tier4.jp
Description
This PR improve performance of function
searchPointcloudNearTrajectory()
used to filter a pointcloud and keep only points close enough to a trajectory.In the current implementation, a point from the pointcloud will be added for all trajectory point that are within range.
This PR ensures that a point can only be added once.
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.