-
Notifications
You must be signed in to change notification settings - Fork 11
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
Integrating a Costmap into the cost function template #8
Comments
This is going to be a bit of a long answer so please bear with me. There is currently no existing cost function that is exactly what you are looking for. We do provide a utility class called texture helpers to load costmaps into a CUDA texture which is a fast way to query into a 2D array on the GPU and provides some useful helper methods. I will describe the steps to using it in the more detailed steps below. You will need to create your own cost function class that inherits from the base cost function class and define We do have an example cost function called Comparison Cost in the MPPI-Generic paper's example code repo (header and source files are located here) that can show you how to use the This is how I would recommend setting it up.
I think that should be everything needed though if you run into problems or have further questions, feel free to message in this thread again. |
Hi, |
Hello,
I am interested in integrating a ROS Occupancy Grid to be used as a cost-map within the cost function template. However, I couldn't find any documentation or examples on how to do this in the repository.
Specifically, I'd like to understand:
If anyone can point me in the right direction, I would greatly appreciate the help!
Thanks in advance!
The text was updated successfully, but these errors were encountered: