]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - CHANGELOG.md
Stop when no parking maneuver found
[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 - Right parallel parking slot planner.
13 - Shrinking length of parallel parking slot test.
14 - SlotPlanner *Find Init Pose* `fip()` method based on BFS.
15 - Reverse approach for finding "entry pose". See Vorobieva2015 for more info.
16 - SlotSide (LEFT, RIGHT) and SlotType (PARALLEL, PERPENDICULAR) methods for
17   SlotPlanner.
18 - Information used for sampling getter.
19
20 ### Changed
21 - Test results plot.
22 - Make T2 planner the default planner.
23
24 ## 0.5.0 - 20109-02-26
25 ### Added
26 - 2d grid data structure for indexing nodes by `x` and `y` axes.
27 - Polygon obstacle.
28 - Bicycle car geometry:
29     - Turning radius circle centers.
30     - Drivable space collision.
31 - Slot planner for parallel parking.
32
33 ## 0.4.0 - 2019-01-16
34 ### Added
35 - Bidirectional T3 planner based on two T2 planners.
36 - RRT\*-Connect algorithm based on [Klemm2015] paper.
37 - Optimization procedure based on *Remove Redundant Points* from [Lan2015].
38 - Variable steer step size to `st3` procedure.
39
40 ### Changed
41 - Make `sample` procedure part of RRTBase.
42 - Make `cost` function part of RRTBase.
43 - Make `nn` procedure part of RRTBase.
44 - Make `nv` procedure part of RRTBase.
45 - Make `steer` procedure part of RRTBase.
46 - Refactor `gplot` module.
47 - T2 planner to include variable steer step size.
48 - Set T3 planner as default.
49
50 ### Removed
51 - RRTBase planner destructor. See `base/rrtbase.cc` for more info.
52
53 ## 0.3.0 - 2018-12-03
54 ### Added
55 - Cost distribution plot function.
56 - Heading independent near vertices procedure inspired by `nn4`.
57
58 ### Changed
59 - Test script.
60 - `nn4` use Euclidean distance while independently on RRT framework cost used.
61
62 ### Removed
63 - `opt_part` procedure (unused).
64
65 ### Fixed
66 - Dijkstra path optimization only if goal found.
67 - Workaround used for optimizing part of path. There is a bug that causes
68   collision when steering from `i` to `i + 1` node of path from `tlog`. See
69   commit `9186f27`.
70
71 ## 0.2.1 - 2018-10-06
72 ### Fixed
73 - Optimize path until optimal.
74
75 ## 0.2.0 - 2018-10-06
76 ### Added
77 - Compilation macros that can specify output binary parameters.
78 - Auxiliary build and test scripts.
79 - Nearest neighbour `nn2` procedure based on linear search over `nodes()`.
80 - Nearest neighbour `nn3` procedure based on indexing over `y` axis.
81 - Near vertices `nv2` procedure based on indexing over `y` axis.
82 - OpenMP parallelization of nearest neighbour and near vertices procedures.
83 - Rebase method that changes (rebases) RRT root to another RRT node.
84 - Structure and method for logging tree edges.
85 - Time dimension to RRT node.
86 - Obstacle distance to RRT Node.
87 - Test planner `T2` based on RRT\* [Karaman2011] with steering from newly added
88   nodes to goal.
89 - OpenGL 2.1 plot using SDL2.
90 - `nn4` procedure - set node's heading to heading of currently comparing node.
91 - Add optimize path method based on [Islam2012]'s *Path Optimize* procedure.
92 - Update cost method of `RRTNode` that updates cumulative costs of all
93   children.
94
95 ### Changed
96 - Build with Ninja.
97 - Split `connect` and `rewire` procedures from Karaman2011's `next` procedure.
98 - Main planning loop logic.
99 - Path optimization of `T2` based on Dijkstra between cusps points.
100
101 ### Fixed
102 - Deletion of nodes returned by `steer` but not used.
103 - Scaling for `iy_` nearest neighbour search structure.
104
105 ## 0.1.0 - 2018-07-05
106 ### Added
107 - Changelog, license, readme.
108 - Class for RRT nodes.
109 - Base class for RRT planners.
110 - RRT primitive procedures:
111         - cost,
112         - nearest neigbour search,
113         - samling procedure,
114         - steering procedure.
115 - RRT planner based on [LaValle1998] paper.
116 - Main program (input/output) with cmake file.
117 - Obstacles class (circle obstacle, segment obstacle).
118 - Collision check function to base RRT class.
119 - Bicycle car model used for collision check with car frame.
120 - Near vertices procedure.
121 - RRT\* planner based on [Karaman2011] paper.
122 - Alternative steering procedure.
123 - Reeds and Shepp cost, steering procedures.
124 - Bicycle car simulation.
125 - Closed loop controller with PI for speed and PurePursuit based on
126   [Coulter1992] paper for steering.
127 - Testing parking scenarios.
128 - Plot python script.
129 - RRT planner based on [Kuwata2008] paper.
130 - RRT testing planner `T1`. First node of steer add as in RRT\* (connect and
131   rewire procedures) then the rest stick to the first node without rewiring.
132 - Cost log and legend with cost in plot.
133
134 ### Changed
135 - Adding JSON ouput for edges, samples.
136 - Steer procedure `st2` use bicycle car model.
137
138 ### Fixed
139 - Memory leaks.
140 - RRTNode heading overflow in constructor.
141 - Sampling range in `sa1` algorithm.