Project

General

Profile

0228 » History » Version 14

Quentin Labourey, 2018-03-06 14:14

1 1 Quentin Labourey
h1. 02/28 : PoM Discussion
2 2 Quentin Labourey
3
*Participants:* 
4
Simon, Andrea, Ellon, Pierre, Quentin
5 3 Quentin Labourey
6
*Goal of the meeting*: Discuss the new PoM architecture, taking into account the different frames to handle and the way we're going to handle changes in positions in the past
7
8
h2. Sum-up
9
10
First, we have to keep a transform tree up to date. The tree used here is represented below:
11
12
!frames.png!
13 4 Quentin Labourey
14 5 Quentin Labourey
The frames are the nodes of the graph, and the DFPCs that change them are visible in red. Some DFPCs give a transformation between the same frame at two successive times (WO for wheel Odometry, and VO for visual Odometry) while some DFPCs give the transform between two frames at a given time.
15 6 Quentin Labourey
16
The way we proposed to do it is to index the poses on the highest frequency localization DFPC (Wheel Odometry on principle), and timestamp each observation made by any sensor in order to keep track of the poses we need to memorize. Below is a small example in time commented:
17
18
!timeline1.png!
19 7 Quentin Labourey
20
As we begin, no observations are made, only poses coming from the Wheel Odometry, which are added to the graph.
21
22
!timeline2.png!
23 8 Quentin Labourey
24
Observations are provided by both sensors, and each time an observation is produced, a timestamp is made, to memorize the available pose at that time (coming from WO, because no other source has produced a pose at the moment).
25 9 Quentin Labourey
26
!timeline3.png!
27 10 Quentin Labourey
28
After a while, a pose in the past is given by PG SLAM. A corresponding Edge is added to the graph. The changes can then be propagated to the rest of the poses, i.e. the future.
29 11 Quentin Labourey
30
!timeline4.png!
31 12 Quentin Labourey
32
Graph can be the pruned in order to remove unneeded poses [CORRECTION MIGHT BE NEEDED THERE]. Every pose corresponding to a timestamp is kept.
33 13 Quentin Labourey
34
!timeline5.png!
35
36
After a while, the PG-SLAM produces a new pose corresponding to another LIDAR obs. How do we propagate then? Future AND past? We might need to update poses corresponding to stereo (e.g. if we want to produce the corresponding DEM).
37 14 Quentin Labourey
38
!timeline6.png!
39
40
A but more pruning. Still need to keep the poses corresponding to a timestamp!