Skip to main content

Georgia Tech Smoothing And Mapping library

Project description

GTSAM: Georgia Tech Smoothing and Mapping Library

C++ API Docs

GTSAM is a manifold optimization library

Important Note

The develop branch is officially in "Pre 4.3" mode. We envision several API-breaking changes as we switch to C++17 and away from boost.

In addition, features deprecated in 4.2 will be removed. Please use the stable 4.2 release if you need those features. However, most are easily converted and can be tracked down (in 4.2) by disabling the cmake flag GTSAM_ALLOW_DEPRECATED_SINCE_V42.

What is GTSAM?

GTSAM is a C++ library that implements smoothing and mapping (SAM) in robotics and vision, using Factor Graphs and Bayes Networks as the underlying computing paradigm rather than sparse matrices.

CI Status Platform Compiler
Python CI Ubuntu 22.04, MacOS 13-14, Windows gcc/clang,MSVC
vcpkg Latest Windows/Ubuntu/Mac -
Build Wheels for Develop See pypi files; no Windows -

On top of the C++ library, GTSAM includes wrappers for MATLAB & Python.

Documentation

Quickstart

In the root library folder execute:

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

Prerequisites:

  • A modern compiler:
    • Mac: at least xcode-14.2
    • Linux: at least clang-11 or gcc-9
    • Windows: at least msvc-14.2
  • CMake >= 3.16
    • Ubuntu: sudo apt-get install cmake

Optional Boost prerequisite:

Boost is now optional. Two cmake flags govern its behavior:

  • GTSAM_USE_BOOST_FEATURES = ON|OFF: some of our timers and concept checking in the tests still depend on boost.
  • GTSAM_ENABLE_BOOST_SERIALIZATION = ON|OFF: serialization of factor graphs, factors, etc still is done using boost

If one or both of these flags are ON, you need to install Boost >= 1.70 - Mac: brew install boost - Ubuntu: sudo apt-get install libboost-all-dev - Windows: We highly recommend using the vcpkg package manager. For other installation methods or troubleshooting, please see the guidance in the cmake/HandleBoost.cmake script.

Optional prerequisites - used automatically if findable by CMake:

GTSAM 4 Compatibility

GTSAM 4 introduces several new features, most notably Expressions and a Python toolbox. It also introduces traits, a C++ technique that allows optimizing with non-GTSAM types. That opens the door to retiring geometric types such as Point2 and Point3 to pure Eigen types, which we also do. A significant change which will not trigger a compile error is that zero-initializing of Point2 and Point3 is deprecated, so please be aware that this might render functions using their default constructor incorrect.

There is a flag GTSAM_ALLOW_DEPRECATED_SINCE_V43 for newly deprecated methods since the 4.3 release, which is on by default, allowing anyone to just pull version 4.3 and compile.

Wrappers

We provide support for MATLAB and Python wrappers for GTSAM. Please refer to the linked documents for more details.

Citation

If you are using GTSAM for academic work, please use the following citation:

@software{gtsam,
  author       = {Frank Dellaert and GTSAM Contributors},
  title        = {borglab/gtsam},
  month        = May,
  year         = 2022,
  publisher    = {Georgia Tech Borg Lab},
  version      = {4.2a8},
  doi          = {10.5281/zenodo.5794541},
  url          = {https://github.com/borglab/gtsam)}}
}

To cite the Factor Graphs for Robot Perception book, please use:

@book{factor_graphs_for_robot_perception,
    author={Frank Dellaert and Michael Kaess},
    year={2017},
    title={Factor Graphs for Robot Perception},
    publisher={Foundations and Trends in Robotics, Vol. 6},
    url={http://www.cs.cmu.edu/~kaess/pub/Dellaert17fnt.pdf}
}

If you are using the IMU preintegration scheme, please cite:

@book{imu_preintegration,
    author={Christian Forster and Luca Carlone and Frank Dellaert and Davide Scaramuzza},
    title={IMU preintegration on Manifold for Efficient Visual-Inertial Maximum-a-Posteriori Estimation},
    year={2015}
}

The Preintegrated IMU Factor

GTSAM includes a state of the art IMU handling scheme based on

  • Todd Lupton and Salah Sukkarieh, "Visual-Inertial-Aided Navigation for High-Dynamic Motion in Built Environments Without Initial Conditions", TRO, 28(1):61-76, 2012. [link]

Our implementation improves on this using integration on the manifold, as detailed in

  • Luca Carlone, Zsolt Kira, Chris Beall, Vadim Indelman, and Frank Dellaert, "Eliminating conditionally independent sets in factor graphs: a unifying perspective based on smart factors", Int. Conf. on Robotics and Automation (ICRA), 2014. [link]
  • Christian Forster, Luca Carlone, Frank Dellaert, and Davide Scaramuzza, "IMU Preintegration on Manifold for Efficient Visual-Inertial Maximum-a-Posteriori Estimation", Robotics: Science and Systems (RSS), 2015. [link]

If you are using the factor in academic work, please cite the publications above.

In GTSAM 4 a new and more efficient implementation, based on integrating on the NavState tangent space and detailed in this document, is enabled by default. To switch to the RSS 2015 version, set the flag GTSAM_TANGENT_PREINTEGRATION to OFF.

Additional Information

There is a GTSAM users Google group for general discussion.

Read about important GTSAM-Concepts here. A primer on GTSAM Expressions, which support (superfast) automatic differentiation, can be found on the GTSAM wiki on BitBucket.

See the INSTALL file for more detailed installation instructions. Our CI/CD process is detailed in workflows.md.

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.

GTSAM was developed in the lab of Frank Dellaert at the Georgia Institute of Technology, with the help of many contributors over the years, see THANKS.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gtsam_extended-4.3a1.post202607020747-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

gtsam_extended-4.3a1.post202607020747-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

gtsam_extended-4.3a1.post202607020747-cp314-cp314-macosx_10_15_universal2.whl (43.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

gtsam_extended-4.3a1.post202607020747-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gtsam_extended-4.3a1.post202607020747-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

gtsam_extended-4.3a1.post202607020747-cp313-cp313-macosx_10_15_universal2.whl (43.5 MB view details)

Uploaded CPython 3.13macOS 10.15+ universal2 (ARM64, x86-64)

gtsam_extended-4.3a1.post202607020747-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gtsam_extended-4.3a1.post202607020747-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

gtsam_extended-4.3a1.post202607020747-cp312-cp312-macosx_10_15_universal2.whl (43.5 MB view details)

Uploaded CPython 3.12macOS 10.15+ universal2 (ARM64, x86-64)

gtsam_extended-4.3a1.post202607020747-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gtsam_extended-4.3a1.post202607020747-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

gtsam_extended-4.3a1.post202607020747-cp311-cp311-macosx_10_15_universal2.whl (43.4 MB view details)

Uploaded CPython 3.11macOS 10.15+ universal2 (ARM64, x86-64)

gtsam_extended-4.3a1.post202607020747-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

gtsam_extended-4.3a1.post202607020747-cp310-cp310-macosx_14_0_arm64.whl (28.2 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 66c888e3a7a3b89387bece7ce37270aeb141a7da4fdb4823fe7684feb9d1a62f
MD5 851f2f4c165561a222faa1bbe1bbbce6
BLAKE2b-256 b138e01860f0828297e5df81a632bef3a1f9d496991298e7ca95118462eddbe8

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 13646b0cc72da736b4f3e3bf280289388c82c3110b4004de1f3b75d4ab20d9b8
MD5 f01312d6ec6a59ca1370e1f1ce6cded5
BLAKE2b-256 9e48978771496f2ceccb1663ce9e8e3a973a1e497c8e731eac86948b3779e401

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f509aa5b4c089a35620e1d97b5f3ef1b574216cf5be6d0550ef5199c2855d7f0
MD5 1362f1a0dd78b6eaa1e365fc0da757ab
BLAKE2b-256 fd02c09bc2b44e32908c79057457872f631cb850e460675c623c6af30c1f5b93

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9cce3e5fdfe4297ae9ac7428e12a6d50f13c2f12b78321713845282b3439e117
MD5 8869dbe824addbe02527ddd3d4587300
BLAKE2b-256 ef3c8a270aa2cc0e9a1271f506832e8322b5ee647c3d64388ce99c8b54563733

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9219ba165673c92c26b92d38e6205888f394c4fb2ed61c8831ff2ee20b1d69d3
MD5 ab3b80d3a8b5528e11769ec7c4c56e76
BLAKE2b-256 40bae85af021b76e984794c7483ec144319e6e8dc25a1113df6ad693750c97f0

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a251a8c2182d85ce36843a3153b39ddb98148df47fac45c241279c5d0df94709
MD5 7dfd50a8bf5dd84d1958fd814b7f3337
BLAKE2b-256 54c1e9cb625fb772b876635e1a67aae0ebe76518c36dd0847f673e7f921ea254

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e17da0b8ad6430c9f3fb8c68bdaf4c53b81124e0f54ce9c34ff0959003f58b55
MD5 d67815c6d1b1fba1d4a7db0f66924072
BLAKE2b-256 9448f2febab5b818e70270afa4feb2c0b2687db1aabd4f62e2d4fb54d34c0223

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 09a02f98ae33d9b572bbfced7288175a87ffe0527c6608edb384d8597932be3f
MD5 88bf3c9c5f7869a2d346aabd079927e3
BLAKE2b-256 8ef69aa7e675514f278e7e82fc0596412d84948fe6a340395cc7587295e0b02b

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6ad1d49a3e03f4d1d03fa80ff46c971b64ff087f0e67ef06ac3b15acf86f7e58
MD5 5eb359c86e238ecdcc1172810a31d860
BLAKE2b-256 a4895ec6b04f5b312059b1079c408c43318477830361b39c69ac01c33d92ccfc

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 edb2702d086abba7c8e96dbf6639e76f8c736410b0eafc8c94718e9160f4e8d2
MD5 b133ce833f91153e700862996d8dcd66
BLAKE2b-256 50f644dec8d875803c8b14ada890260751811da4143533bed9e1f3073d384b74

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 efa79673991db27c0cc5f19cfa96bb13bd70d877cc8fc03c5b99e440525147df
MD5 f448d776424b566e464a9e942e1d133e
BLAKE2b-256 baa6c9b5f7e6c8205d9c8b4c01d70cb71f6496c4cdd906a79084f8ca3f1b32ee

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 878eaaceec60908b490b60ed9ceaac24bbef403732804fd16858d7fe4f05b2f4
MD5 960ff40e850f96d9aba8277b22cb012a
BLAKE2b-256 d9b17bbaf915e2fde5ec2c747701550a3b629629bf273f5e5d93da63aed8b5ef

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dc0a2f0d5f8e9733e63bcde31de15afb3a19abc6ee457532aace4c75c607654
MD5 9b1d3c0a299d387fbc409e3e1d58fbc3
BLAKE2b-256 91d3f329290154fe454833ee65ac567bd202a27dfecc3eae8ed89eae63f986f7

See more details on using hashes here.

File details

Details for the file gtsam_extended-4.3a1.post202607020747-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for gtsam_extended-4.3a1.post202607020747-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 601d2e7fc7fc912bedf86defbc0dd0e31f9bb025b46f9ca76ac43b4693effb00
MD5 4de7e3f5738146dfd9beef7b9f091b4f
BLAKE2b-256 60392b8f107efae6bf0c0919f103858dc0dafac21dea9ae90236fa16791099a3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page