mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-30 17:10:48 +08:00
186 lines
5.3 KiB
Python
186 lines
5.3 KiB
Python
"""
|
|
LPA_star 2D
|
|
@author: huiming zhou
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import math
|
|
import matplotlib.pyplot as plt
|
|
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
|
|
"/../../Search-based Planning/")
|
|
|
|
from Search_2D import queue
|
|
from Search_2D import plotting
|
|
from Search_2D import env
|
|
|
|
|
|
class LpaStar:
|
|
def __init__(self, x_start, x_goal, heuristic_type):
|
|
self.xI, self.xG = x_start, x_goal
|
|
self.heuristic_type = heuristic_type
|
|
|
|
self.Env = env.Env()
|
|
self.Plot = plotting.Plotting(x_start, x_goal)
|
|
|
|
self.u_set = self.Env.motions
|
|
self.obs = self.Env.obs
|
|
self.x = self.Env.x_range
|
|
self.y = self.Env.y_range
|
|
|
|
self.U = queue.QueuePrior()
|
|
self.g, self.rhs = {}, {}
|
|
|
|
for i in range(self.Env.x_range):
|
|
for j in range(self.Env.y_range):
|
|
self.rhs[(i, j)] = float("inf")
|
|
self.g[(i, j)] = float("inf")
|
|
|
|
self.rhs[self.xI] = 0
|
|
self.U.put(self.xI, self.Key(self.xI))
|
|
self.fig = plt.figure()
|
|
|
|
def run(self):
|
|
self.Plot.plot_grid("Lifelong Planning A*")
|
|
|
|
self.ComputePath()
|
|
self.plot_path(self.extract_path_test())
|
|
|
|
self.fig.canvas.mpl_connect('button_press_event', self.on_press)
|
|
print("hahha")
|
|
|
|
plt.show()
|
|
|
|
def on_press(self, event):
|
|
x, y = event.xdata, event.ydata
|
|
if x < 0 or x > self.x - 1 or y < 0 or y > self.y - 1:
|
|
print("Please choose right area!")
|
|
else:
|
|
x, y = int(x), int(y)
|
|
print("Change position: x =", x, ",", "y =", y)
|
|
if (x, y) not in self.obs:
|
|
self.obs.add((x, y))
|
|
plt.plot(x, y, 'sk')
|
|
plt.pause(0.001)
|
|
self.rhs[(x, y)] = float("inf")
|
|
self.g[(x, y)] = float("inf")
|
|
for node in self.get_neighbor((x, y)):
|
|
self.UpdateVertex(node)
|
|
else:
|
|
self.obs.remove((x, y))
|
|
plt.plot(x, y, marker='s', color='white')
|
|
self.UpdateVertex((x, y))
|
|
self.ComputePath()
|
|
self.plot_path(self.extract_path_test())
|
|
self.fig.canvas.draw_idle()
|
|
|
|
@staticmethod
|
|
def plot_path(path):
|
|
px = [x[0] for x in path]
|
|
py = [x[1] for x in path]
|
|
plt.plot(px, py, marker='o')
|
|
|
|
def ComputePath(self):
|
|
while self.U.top_key() < self.Key(self.xG) or \
|
|
self.rhs[self.xG] != self.g[self.xG]:
|
|
s = self.U.get()
|
|
if self.g[s] > self.rhs[s]:
|
|
self.g[s] = self.rhs[s]
|
|
else:
|
|
self.g[s] = float("inf")
|
|
self.UpdateVertex(s)
|
|
for x in self.get_neighbor(s):
|
|
self.UpdateVertex(x)
|
|
|
|
def UpdateVertex(self, s):
|
|
if s != self.xI:
|
|
u_min = float("inf")
|
|
for x in self.get_neighbor(s):
|
|
u_min = min(u_min, self.g[x] + self.cost(x, s))
|
|
self.rhs[s] = u_min
|
|
self.U.remove(s)
|
|
if self.g[s] != self.rhs[s]:
|
|
self.U.put(s, self.Key(s))
|
|
|
|
def get_neighbor(self, s):
|
|
nei_list = set()
|
|
for u in self.u_set:
|
|
s_next = tuple([s[i] + u[i] for i in range(2)])
|
|
if s_next not in self.obs:
|
|
nei_list.add(s_next)
|
|
|
|
return nei_list
|
|
|
|
def Key(self, s):
|
|
return [min(self.g[s], self.rhs[s]) + self.h(s),
|
|
min(self.g[s], self.rhs[s])]
|
|
|
|
def h(self, s):
|
|
heuristic_type = self.heuristic_type # heuristic type
|
|
goal = self.xG # goal node
|
|
|
|
if heuristic_type == "manhattan":
|
|
return abs(goal[0] - s[0]) + abs(goal[1] - s[1])
|
|
else:
|
|
return math.hypot(goal[0] - s[0], goal[1] - s[1])
|
|
|
|
def cost(self, s_start, s_end):
|
|
if s_start in self.obs or s_end in self.obs:
|
|
return float("inf")
|
|
return 1
|
|
|
|
def extract_path(self):
|
|
path = []
|
|
s = self.xG
|
|
|
|
while True:
|
|
g_list = {}
|
|
for x in self.get_neighbor(s):
|
|
g_list[x] = self.g[x]
|
|
s = min(g_list, key=g_list.get)
|
|
if s == self.xI:
|
|
return list(reversed(path))
|
|
path.append(s)
|
|
|
|
def extract_path_test(self):
|
|
path = []
|
|
s = self.xG
|
|
|
|
for k in range(100):
|
|
g_list = {}
|
|
for x in self.get_neighbor(s):
|
|
g_list[x] = self.g[x]
|
|
s = min(g_list, key=g_list.get)
|
|
if s == self.xI:
|
|
return list(reversed(path))
|
|
path.append(s)
|
|
return list(reversed(path))
|
|
|
|
def print_g(self):
|
|
print("he")
|
|
for k in range(self.Env.y_range):
|
|
j = self.Env.y_range - k - 1
|
|
string = ""
|
|
for i in range(self.Env.x_range):
|
|
if self.g[(i, j)] == float("inf"):
|
|
string += ("00" + ', ')
|
|
else:
|
|
if self.g[(i, j)] // 10 == 0:
|
|
string += ("0" + str(self.g[(i, j)]) + ', ')
|
|
else:
|
|
string += (str(self.g[(i, j)]) + ', ')
|
|
print(string)
|
|
|
|
|
|
def main():
|
|
x_start = (5, 5)
|
|
x_goal = (45, 25)
|
|
|
|
lpastar = LpaStar(x_start, x_goal, "manhattan")
|
|
lpastar.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|