Implementation of RRT #455
-
Is it possible that RRT-like planners will emerge in the future? If not, what might be the reasons? Here is a work on RRT with CUDA: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
We have a GPU accelerated implementation of PRM* that uses BIT* like exploration when adding nodes. See page 12 of https://curobo.org/reports/curobo_report.pdf. However, we found that trajectory optimization gave us minimum-time paths faster than our PRM* planner. We still use the PRM* planner to initialize trajectory optimization when linear interpolated seeds fail to solve the problem. |
Beta Was this translation helpful? Give feedback.
We have a GPU accelerated implementation of PRM* that uses BIT* like exploration when adding nodes. See page 12 of https://curobo.org/reports/curobo_report.pdf.
However, we found that trajectory optimization gave us minimum-time paths faster than our PRM* planner. We still use the PRM* planner to initialize trajectory optimization when linear interpolated seeds fail to solve the problem.