-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortest_path.m
79 lines (56 loc) · 1.99 KB
/
shortest_path.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
function [nav_row,nav_col,p_struct]=shortest_path(mat,id,start_point_row,start_point_col,parking_struct)
p_struct=[];
parking_taken=0;
exist=false;
for j=1:length(parking_struct)
if parking_struct(j).car_id==id
exist=true;
end
end
if ~exist
shortest_distance=inf;
[r,c]=size(mat);
start_row=start_point_row;
start_col=start_point_col;
for g=1:length(parking_struct)
if parking_struct(g).status=="free" && parking_struct(g).car_id==-1
des_row=parking_struct(g).parking_row;
des_col=parking_struct(g).parking_col;
bw1=false(r,c);
bw2=false(r,c);
bw1(start_row, start_col)=true;
bw2(des_row, des_col)=true;
D1 = bwdistgeodesic(mat, bw1, 'cityblock');
D2 = bwdistgeodesic(mat, bw2, 'cityblock');
D = D1 + D2;
D = round(D * 32) / 32;
D(isnan(D)) = inf;
paths = imregionalmin(D);
paths_thinned_many = bwmorph(paths, 'thin', inf);
%[nav_row,nav_col]=find(paths_thinned_many==1);
dis=D(paths);
distance=dis(1);
if distance<shortest_distance
shortest_distance=distance;
% [rows,cols]=find(paths_thinned_many==1);
parking_taken=g;
end
end
end
if parking_taken~=0
parking_struct(parking_taken).status="taken";
parking_struct(parking_taken).car_id=id;
nav_row=parking_struct(parking_taken).parking_row;
nav_col=parking_struct(parking_taken).parking_col;
p_struct=parking_struct;
else
p_struct=parking_struct;
nav_row=-1;
nav_col=-1;
end
else
p_struct=parking_struct;
nav_row=-1;
nav_col=-1;
end
end