SLAM D 18
This is a modal window.
The media could not be loaded, either because the server or network failed or because the format is not supported.
Formal Metadata
Title |
| |
Title of Series | ||
Number of Parts | 76 | |
Author | ||
License | CC Attribution - NonCommercial - NoDerivatives 3.0 Germany: You are free to use, copy, distribute and transmit the work or content in unchanged form for any legal and non-commercial purpose as long as the work is attributed to the author in the manner specified by the author or licensor. | |
Identifiers | 10.5446/49016 (DOI) | |
Publisher | ||
Release Date | ||
Language |
Content Metadata
Subject Area | |
Genre |
SLAM and path planning41 / 76
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
00:00
Philips CD-iOpen setSinguläres IntegralPredictabilityComputer fileRoboticsMeasurementNetwork topologyDerivation (linguistics)Matrix (mathematics)Group actionCodePhysical systemOpen setEndliche ModelltheorieKalman-FilterAutocovarianceSource codeXML
00:57
Structural loadPhysical systemTrajectoryPosition operatorError messageCodeMeasurementRoboticsNoise (electronics)MassLine (geometry)Lipschitz-StetigkeitState observerSerial port
01:50
MeasurementLoop (music)PredictionAutocovarianceCylinder (geometry)Control flowFunction (mathematics)RobotData conversionMatrix (mathematics)Error messageMaxima and minimaDisplacement MappingState observerPosition operatorLoop (music)Line (geometry)Electronic mailing listCASE <Informatik>Lipschitz-StetigkeitTrajectoryResultantSource code
02:05
Structural loadDensity of statesTransformation (genetics)TrajectoryExecution unitError messageCASE <Informatik>EllipseResultantSimilarity (geometry)State observerEstimatorGoodness of fitDiagram
02:37
Loop (music)PredictionAutocovarianceMatrix (mathematics)Data conversionAngleError messageCylinder (geometry)Control flowFunction (mathematics)RobotMaxima and minimaResultantState observer
02:40
Structural loadPosition operatorGoodness of fitDiagram
02:58
Standard deviationStructural loadOrientation (vector space)MeasurementTheory of relativityCASE <Informatik>Ellipse
03:22
Structural loadStandard deviationExecution unitSimultaneous localization and mappingForest
Transcript: English(auto-generated)
00:00
So congratulations if you made it that far. So you really developed some non-trivial code. So starting from a real robot you modeled the motion and the measurement and derived all the derivative matrices that were necessary and then implemented the prediction and the correction step of a full-fledged Kalman filter. And so whenever you have to do this for another
00:23
robot or another system in general you just may follow exactly the same steps. You set up the model for the system transition, you set up the model for the measurement and then you derive all the Jacobian matrices which are then required for the prediction and the measurement step of the
00:41
Kalman filter. And so in practice after you have set everything up the problem is usually to find good values for the various covariance matrices in the filter. Now when you run your code it will produce this Kalman prediction and correction text file and when you load that you will notice several interesting things. So for example in the beginning our robot sits here
01:04
and it doesn't move for the first few steps but it sees those six landmarks. So as it doesn't move the system noise is zero and so in the beginning it will accumulate all the measurements once again which will then result in a smaller error ellipse. As we move on you
01:28
can see we have more or less landmarks until we have only two here or even none at this position. So you can see at this position our uncertainty in heading and position is relatively large.
01:40
This gets smaller as we have more landmarks in our view and as you see we end up with a pretty smooth and globally correct trajectory. Now let's do the following modification to our code. In the Kalman filter loop I put in this line which means that for a certain position where I may get zero, one or more observations I'll just keep the first observation in the list.
02:05
And after we run this we reload the trajectory and now we obtain the following. The trajectory looks more jagged and as we move on we see we always take just one observation if we have at least one and this results in our error ellipse being larger than in the previous case.
02:22
But nevertheless our trajectory looks astonishingly good and certainly better than what we've achieved in unit B using our trajectory correction based on an estimation of the similarity transform. Now if we take the last observation instead of the first we will obtain this result which
02:43
doesn't look as good anymore. So especially in the beginning we have this movement either due the fact that this landmark is relatively far away and our scanner has maybe some systematic error or due to the fact that this landmark reference position is actually not correct. So
03:01
globally we are not doing as good as in the previous case and also notice for example here as we move along how the measurement to this landmark influences how my ellipse is oriented.
03:23
So once again this is our final solution and congratulations if you made it successfully through this unit of our SLAM lecture. So see you in the next unit!