-
Notifications
You must be signed in to change notification settings - Fork 42
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
Create an Obstacle Manager #231
Comments
After some thought (pictured below): Determining If Two Obstacles are Close together
Cones
Lines
Merging Two Obstacles
Cones
Lines
My Thoughts (In Text Form) |
After doing some searching/thinking about lines, (assuming the line segments are a vector of (x,y) points) we could determine if two line segments are the "same" by seeing if two conditions are both true: |
Just to be clear here, we're actually dealing with n-ary polynomial lines, rather then just straight lines. |
Splines may be a good way of storing a longer line made up of several polynomials: https://en.wikipedia.org/wiki/Spline_(mathematics) Note to self: Investigate and expand this. |
Resolved last year. |
This will act like a global map for us, general structure would be:
igvc_obstacle_list
message (note that this message type does not yet exist, see Create an "igvc_obstacle_list" message type #228 )nav_msgs/OccupancyGrid
message with all the obstacles on it inflated by some given radiusNote
There is a lot of complexity in the above structure that likely needs to be hashed out some more before we implement this. For example:
The text was updated successfully, but these errors were encountered: