Rapidly-Exploring Random Tree

Simple RRT

Developed a RRT in python for a 2D domain, D=[0, 100]x[0, 100] with an initial configuration of (50, 50) and incremental distancee, d = 1. The reult is plotted for input number of vertices, K.

Path Planning with Obstacles

This RRT has the same domain size but it has a random amount of circular obstacles of varying radii along with an initial and goal position. This RRT runs similar to the simple RRT while avoiding obstacles and stops when if finds an obstacle free straight line path to the goal position.


Path Planning in 3D

This RRT has the same concept as a regular 2 dimensional rapidly exploring random tree algorithm, however in this the z axis dimension is also considered in all of the calculations.


Know more about this project at this github link .