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