This package contains files to understand how to use the g2o library.
- Use
tutorial_slam2d
along withpython-helpers
- Understand how to make 3D plots using
matplotlib
- Understand how to use
g2opy
- Generate robot path (without landmarks)
- Ground truth data generation (visualize in matplot)
- Convert ground truth data into g2o format
- Generate sensor readings (visualize in matplot)
- Convert sensor data into g2o format
- Generate robot path (with landmarks)
- Test the output for known correspondence
- Integration with ROS
- Spatial-Math
- Numpy
- Matplotlib
- g2o (from g2opy)
- getch (for linux) / msvcrt (for windows)
-
What is G2O library for?
A: Provides tools to build a hyper graphs and algorithms to optimize these large large graphs. -
How do I go about implementing G2O library?
A: The official documentation is very good in itself. You may check out the links given in the end to sharpen the basics required. The examples that come along with this library are a great starting point to understand it. -
What are odometry measurements?
A: Difference between robot's pose at two consecutive timesteps. In 2D case simulated undersim_2d.py
, it is represented as (delta x, delta y, theta).
- Solving matrices via linear least squares - YouTube link
- Solving via non-linear least squares - YouTube link
- Least squares by Cyrill Stachniss - YouTube link