]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - CHANGELOG.md
50dd584424300ce28b1c7cc279df6ce8fec9f5c6
[hubacji1/iamcar.git] / CHANGELOG.md
1 # Changelog
2 All notable changes to this project will be documented in this file.
3
4 The format is based on [Keep a Changelog][] and this project adheres to
5 [Semantic Versioning][].
6
7 [Keep a Changelog]: http://keepachangelog.com/
8 [Semantic Versioning]: http://semver.org/
9
10 ## Unreleased
11 ### Added
12 - Forward perpendicular parking methods for `SlotPlanner`.
13 - Angle forward/backward parking.
14 - Multiple `firsts` points tested before random sampling.
15 - Dubins path steering procedure.
16
17 ### Changed
18 - Parking slot in scenario starts with the point closest to the init pose.
19 - Fix and include perpendicular parking slot in *find init pose* method of
20   SlotPlanner.
21 - In T2's next method, steer to multiple goals that are connected with goal.
22 - Normal distribution in sampling.
23 - Sampling info based on init pose find by `fip()` of SlotPlanner.
24 - Refactor Nearest Neighbor, remove unused files.
25 - Make sampling info scenario dependent.
26
27 ### Fixed
28 - IYI computation.
29
30 ## 0.6.1 - 2019-05-21
31 ### Fixed
32 - Missing declaration.
33
34 ## 0.6.0 - 2019-05-20
35 ### Added
36 - Right parallel parking slot planner.
37 - Shrinking length of parallel parking slot test.
38 - SlotPlanner *Find Init Pose* `fip()` method based on BFS.
39 - Reverse approach for finding "entry pose". See Vorobieva2015 for more info.
40 - SlotSide (LEFT, RIGHT) and SlotType (PARALLEL, PERPENDICULAR) methods for
41   SlotPlanner.
42 - Information used for sampling getter.
43 - Slot planner working for perpendicular parking scenario also.
44 - Matej's heuristic cost.
45 - Perpendicular slot planner proposal.
46 - Random samples logging.
47 - Rotate scenario script.
48 - Obstacles to SlotPlanner.
49
50 ### Changed
51 - Test results plot.
52 - Make `T2` planner the default planner.
53 - Sampling info for different dimensions and angles of slot.
54 - Use reverse approach for finding init pose by default.
55 - Use `USE_GL` macro for build, in code.
56
57 ### Fixed
58 - Car border.
59
60 ## 0.5.0 - 20109-02-26
61 ### Added
62 - 2d grid data structure for indexing nodes by `x` and `y` axes.
63 - Polygon obstacle.
64 - Bicycle car geometry:
65     - Turning radius circle centers.
66     - Drivable space collision.
67 - Slot planner for parallel parking.
68
69 ## 0.4.0 - 2019-01-16
70 ### Added
71 - Bidirectional T3 planner based on two T2 planners.
72 - RRT\*-Connect algorithm based on [Klemm2015] paper.
73 - Optimization procedure based on *Remove Redundant Points* from [Lan2015].
74 - Variable steer step size to `st3` procedure.
75
76 ### Changed
77 - Make `sample` procedure part of RRTBase.
78 - Make `cost` function part of RRTBase.
79 - Make `nn` procedure part of RRTBase.
80 - Make `nv` procedure part of RRTBase.
81 - Make `steer` procedure part of RRTBase.
82 - Refactor `gplot` module.
83 - T2 planner to include variable steer step size.
84 - Set T3 planner as default.
85
86 ### Removed
87 - RRTBase planner destructor. See `base/rrtbase.cc` for more info.
88
89 ## 0.3.0 - 2018-12-03
90 ### Added
91 - Cost distribution plot function.
92 - Heading independent near vertices procedure inspired by `nn4`.
93
94 ### Changed
95 - Test script.
96 - `nn4` use Euclidean distance while independently on RRT framework cost used.
97
98 ### Removed
99 - `opt_part` procedure (unused).
100
101 ### Fixed
102 - Dijkstra path optimization only if goal found.
103 - Workaround used for optimizing part of path. There is a bug that causes
104   collision when steering from `i` to `i + 1` node of path from `tlog`. See
105   commit `9186f27`.
106
107 ## 0.2.1 - 2018-10-06
108 ### Fixed
109 - Optimize path until optimal.
110
111 ## 0.2.0 - 2018-10-06
112 ### Added
113 - Compilation macros that can specify output binary parameters.
114 - Auxiliary build and test scripts.
115 - Nearest neighbour `nn2` procedure based on linear search over `nodes()`.
116 - Nearest neighbour `nn3` procedure based on indexing over `y` axis.
117 - Near vertices `nv2` procedure based on indexing over `y` axis.
118 - OpenMP parallelization of nearest neighbour and near vertices procedures.
119 - Rebase method that changes (rebases) RRT root to another RRT node.
120 - Structure and method for logging tree edges.
121 - Time dimension to RRT node.
122 - Obstacle distance to RRT Node.
123 - Test planner `T2` based on RRT\* [Karaman2011] with steering from newly added
124   nodes to goal.
125 - OpenGL 2.1 plot using SDL2.
126 - `nn4` procedure - set node's heading to heading of currently comparing node.
127 - Add optimize path method based on [Islam2012]'s *Path Optimize* procedure.
128 - Update cost method of `RRTNode` that updates cumulative costs of all
129   children.
130
131 ### Changed
132 - Build with Ninja.
133 - Split `connect` and `rewire` procedures from Karaman2011's `next` procedure.
134 - Main planning loop logic.
135 - Path optimization of `T2` based on Dijkstra between cusps points.
136
137 ### Fixed
138 - Deletion of nodes returned by `steer` but not used.
139 - Scaling for `iy_` nearest neighbour search structure.
140
141 ## 0.1.0 - 2018-07-05
142 ### Added
143 - Changelog, license, readme.
144 - Class for RRT nodes.
145 - Base class for RRT planners.
146 - RRT primitive procedures:
147         - cost,
148         - nearest neigbour search,
149         - samling procedure,
150         - steering procedure.
151 - RRT planner based on [LaValle1998] paper.
152 - Main program (input/output) with cmake file.
153 - Obstacles class (circle obstacle, segment obstacle).
154 - Collision check function to base RRT class.
155 - Bicycle car model used for collision check with car frame.
156 - Near vertices procedure.
157 - RRT\* planner based on [Karaman2011] paper.
158 - Alternative steering procedure.
159 - Reeds and Shepp cost, steering procedures.
160 - Bicycle car simulation.
161 - Closed loop controller with PI for speed and PurePursuit based on
162   [Coulter1992] paper for steering.
163 - Testing parking scenarios.
164 - Plot python script.
165 - RRT planner based on [Kuwata2008] paper.
166 - RRT testing planner `T1`. First node of steer add as in RRT\* (connect and
167   rewire procedures) then the rest stick to the first node without rewiring.
168 - Cost log and legend with cost in plot.
169
170 ### Changed
171 - Adding JSON ouput for edges, samples.
172 - Steer procedure `st2` use bicycle car model.
173
174 ### Fixed
175 - Memory leaks.
176 - RRTNode heading overflow in constructor.
177 - Sampling range in `sa1` algorithm.