Go to file
cbeall3 aa942a664b Fix for static linking to boost 2014-05-12 12:41:39 -04:00
CppUnitLite
cmake
doc
examples fixed bug in hessianDiagonal (raw access) 2014-04-03 17:50:52 -04:00
gtsam testSerializationLinear passes. Fill in the lower triangle part of matrix_ so that boost::serialization won't throw the input_stream exception due to uninitialized data 2014-05-08 11:49:21 -04:00
gtsam_unstable shut up some warnings on Windows 2014-05-06 22:57:26 -04:00
matlab Added utilities to Contents.m 2014-05-06 00:23:34 -04:00
package_scripts
tests
wrap Fixed a number of clang warnings 2014-02-23 18:53:48 -05:00
.cproject
.gitignore
.project
CMakeLists.txt
DEVELOP
INSTALL
LICENSE
LICENSE.BSD
README.md
THANKS
USAGE
gtsam.h
gtsam_extra.cmake.in
makestats.sh Command line for generating svn stats, needs statsvn from statsvn.org 2012-06-11 14:31:32 +00:00
matlab.h

README.md

README - Georgia Tech Smoothing and Mapping library

What is GTSAM?

GTSAM is a library of C++ classes that implement smoothing and mapping (SAM) in robotics and vision, using factor graphs and Bayes networks as the underlying computing paradigm rather than sparse matrices.

On top of the C++ library, GTSAM includes a MATLAB interface (enable GTSAM_INSTALL_MATLAB_TOOLBOX in CMake to build it). A Python interface is under development.

Quickstart

In the root library folder execute:

#!bash
$ mkdir build
$ cd build
$ cmake ..
$ make check (optional, runs unit tests)
$ make install

Prerequisites:

  • Boost >= 1.43 (Ubuntu: sudo apt-get install libboost-all-dev)
  • CMake >= 2.6 (Ubuntu: sudo apt-get install cmake)

Optional prerequisites - used automatically if findable by CMake:

Additional Information

See the INSTALL file for more detailed installation instructions.

GTSAM is open source under the BSD license, see the LICENSE and LICENSE.BSD files.

Please see the examples/ directory and the USAGE file for examples on how to use GTSAM.