gtsam/examples
Stephen Williams f4bfc435ff Added first of the Kalman Filter examples 2011-08-22 15:35:24 +00:00
..
vSLAMexample Commented use of GTSAM_MAGIC_KEY 2011-08-18 13:18:26 +00:00
Makefile.am Added first of the Kalman Filter examples 2011-08-22 15:35:24 +00:00
PlanarSLAMExample_easy.cpp Comments and README file 2011-08-19 13:11:04 +00:00
PlanarSLAMSelfContained_advanced.cpp Comments and README file 2011-08-19 13:11:04 +00:00
Pose2SLAMExample_advanced.cpp Comments and README file 2011-08-19 13:11:04 +00:00
Pose2SLAMExample_easy.cpp Comments and README file 2011-08-19 13:11:04 +00:00
Pose2SLAMwSPCG_advanced.cpp Comments and README file 2011-08-19 13:11:04 +00:00
Pose2SLAMwSPCG_easy.cpp Comments and README file 2011-08-19 13:11:04 +00:00
README Plan/outline for Kalman filter examples 2011-08-19 21:27:47 +00:00
SimpleRotation.cpp Comments and README file 2011-08-19 13:11:04 +00:00
elaboratePoint2KalmanFilter.cpp Added first of the Kalman Filter examples 2011-08-22 15:35:24 +00:00

README

This directory contains a number of exapmples that illustrate the use of GTSAM:

SimpleRotation:  a super-simple example of optimizing a single rotation according to a single prior

Kalman Filter Examples
======================
elaboratePoint2KalmanFilter: simple linear Kalman filter on a moving 2D point, but done using factor graphs
easyPoint2KalmanFilter: uses the cool generic templated Kalman filter class to do the same
errorStateKalmanFilter: simple 1D example of a moving target measured by a accelerometer, incl. drift-rate bias
fullStateKalmanFilter: simple 1D example with a full-state filter

2D Pose SLAM 
============
Pose2SLAMExample_easy: A 2D Pose SLAM example using the predefined typedefs in gtsam/slam/pose2SLAM.h
Pose2SLAMExample_advanced: same, but uses an Optimizer object
Pose2SLAMwSPCG_easy: solve a simple 3 by 3 grid of Pose2 SLAM problem by using easy SPCG interface
Pose2SLAMwSPCG_advanced: solve a simple 3 by 3 grid of Pose2 SLAM problem by using advanced SPCG interface

Planar SLAM with landmarks
==========================
PlanarSLAMExample: simple robotics example using the pre-built planar SLAM domain
PlanarSLAMSelfContained_advanced: simple robotics example with all typedefs internal to this script.

Visual SLAM
===========
The directory vSLAMexample includes 2 simple examples using GTSAM:
- vSFMexample using visualSLAM in for structure-from-motion (SFM), and
- vISAMexample using visualSLAM and ISAM for incremental SLAM updates
See the separate README file there.