rrt
rrt copied to clipboard
C++ RRT (Rapidly-exploring Random Tree) Implementation
Hi, The proposed Bi-RRT using cubic curve to smooth is great, Are there any papers about this Bi-RRT? Thanks very much.
Hey guys, Would you have quick recommendations to tweak `RRTWidget.cpp` and `main.cpp` such that RRT does not use a GUI for the obstacle setup? My use case is: being able...
Hi, Is it possible to get the time taken or the distance of the solution? Thank you!
This allows us to exactly reproduce rrt runs, which is useful for test reproducability.
In findBestPath, I think it should be checking to make sure the path connecting the two trees is valid too
http://www.cs.cmu.edu/~15780/readings/02iros-errt.pdf
Google has a [benchmarking library](https://github.com/google/benchmark) that goes along well with googletest, which we already use for unit testing. If we setup some benchmarks of the rrt, it will allow us...
Fixes #64 Created a function randomBiasState that returns a point based on a goal state and goal bias using logit function