mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-29 16:40:46 +08:00
107 lines
3.3 KiB
Python
107 lines
3.3 KiB
Python
"""
|
|
This is rrt star code for 3D
|
|
@author: yue qi
|
|
"""
|
|
import numpy as np
|
|
from numpy.matlib import repmat
|
|
from collections import defaultdict
|
|
import time
|
|
import matplotlib.pyplot as plt
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)) + "/../../Sampling_based_Planning/")
|
|
from rrt_3D.env3D import env
|
|
from rrt_3D.utils3D import getDist, sampleFree, nearest, steer, isCollide, near, visualization, cost, path
|
|
|
|
|
|
class rrtstar():
|
|
def __init__(self):
|
|
self.env = env()
|
|
|
|
self.Parent = {}
|
|
self.V = []
|
|
# self.E = edgeset()
|
|
self.COST = {}
|
|
|
|
self.i = 0
|
|
self.maxiter = 12000 # at least 2000 in this env
|
|
self.stepsize = 0.5
|
|
self.gamma = 500
|
|
self.eta = self.stepsize
|
|
self.Path = []
|
|
self.done = False
|
|
self.x0 = tuple(self.env.start)
|
|
self.xt = tuple(self.env.goal)
|
|
|
|
self.V.append(self.x0)
|
|
self.ind = 0
|
|
def wireup(self,x,y):
|
|
# self.E.add_edge([s,y]) # add edge
|
|
self.Parent[x] = y
|
|
|
|
def removewire(self,xnear):
|
|
xparent = self.Parent[xnear]
|
|
a = [xnear,xparent]
|
|
# self.E.remove_edge(a) # remove and replace old the connection
|
|
|
|
def reached(self):
|
|
self.done = True
|
|
goal = self.xt
|
|
xn = near(self,self.env.goal)
|
|
c = [cost(self,tuple(x)) for x in xn]
|
|
xncmin = xn[np.argmin(c)]
|
|
self.wireup(goal , tuple(xncmin))
|
|
self.V.append(goal)
|
|
self.Path,self.D = path(self)
|
|
|
|
def run(self):
|
|
xnew = self.x0
|
|
print('start rrt*... ')
|
|
self.fig = plt.figure(figsize = (10,8))
|
|
while self.ind < self.maxiter:
|
|
xrand = sampleFree(self)
|
|
xnearest = nearest(self,xrand)
|
|
xnew = steer(self,xnearest,xrand)
|
|
collide, _ = isCollide(self,xnearest,xnew)
|
|
if not collide:
|
|
Xnear = near(self,xnew)
|
|
self.V.append(xnew) # add point
|
|
visualization(self)
|
|
# minimal path and minimal cost
|
|
xmin, cmin = xnearest, cost(self, xnearest) + getDist(xnearest, xnew)
|
|
# connecting along minimal cost path
|
|
Collide = []
|
|
for xnear in Xnear:
|
|
xnear = tuple(xnear)
|
|
c1 = cost(self, xnear) + getDist(xnew, xnear)
|
|
collide, _ = isCollide(self, xnew, xnear)
|
|
Collide.append(collide)
|
|
if not collide and c1 < cmin:
|
|
xmin, cmin = xnear, c1
|
|
self.wireup(xnew, xmin)
|
|
# rewire
|
|
for i in range(len(Xnear)):
|
|
collide = Collide[i]
|
|
xnear = tuple(Xnear[i])
|
|
c2 = cost(self, xnew) + getDist(xnew, xnear)
|
|
if not collide and c2 < cost(self, xnear):
|
|
# self.removewire(xnear)
|
|
self.wireup(xnear, xnew)
|
|
self.i += 1
|
|
self.ind += 1
|
|
# max sample reached
|
|
self.reached()
|
|
print('time used = ' + str(time.time()-starttime))
|
|
print('Total distance = '+str(self.D))
|
|
visualization(self)
|
|
plt.show()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
p = rrtstar()
|
|
starttime = time.time()
|
|
p.run()
|
|
|