Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gradslam/gradslam
gradslam is an open source differentiable dense SLAM library for PyTorch
https://github.com/gradslam/gradslam
3d-reconstruction deep-learning machine-learning robotics slam
Last synced: 10 days ago
JSON representation
gradslam is an open source differentiable dense SLAM library for PyTorch
- Host: GitHub
- URL: https://github.com/gradslam/gradslam
- Owner: gradslam
- License: mit
- Created: 2020-11-06T03:09:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-02T16:35:54.000Z (about 1 year ago)
- Last Synced: 2024-10-10T17:21:48.219Z (29 days ago)
- Topics: 3d-reconstruction, deep-learning, machine-learning, robotics, slam
- Language: Python
- Homepage: https://gradslam.github.io/
- Size: 64.7 MB
- Stars: 1,311
- Watchers: 47
- Forks: 160
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-robotic-tooling - gradslam - An open source differentiable dense SLAM library for PyTorch. (Simultaneous Localization and Mapping / Visual)
README
![](assets/gradslam-banner.png)
--------------------------------------------------------------------------------
[![MITLicense](https://img.shields.io/badge/license-MIT-green)](https://opensource.org/licenses/MIT) [![CircleCI](https://circleci.com/gh/gradslam/gradslam.svg?style=shield&circle-token=109c43f395121b987111c85a9cf51d5fd75ea72c)](https://circleci.com/gh/gradslam/gradslam/tree/master) [![Docs](https://readthedocs.org/projects/gradslam/badge/?version=latest)](https://gradslam.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://badge.fury.io/py/gradslam.svg)](https://badge.fury.io/py/gradslam)
- [Overview](#overview)
- [Installation](#installation)
- [Tutorials](https://gradslam.readthedocs.io/en/latest/tutorials.html)
- [Online Documentation](https://gradslam.readthedocs.io/en/latest/)
- [Contributing to gradslam](CONTRIBUTING.md)## Overview
gradslam is a fully differentiable dense SLAM framework. It provides a repository of differentiable building blocks for a dense SLAM system, such as differentiable nonlinear least squares solvers, differentiable ICP (iterative closest point) techniques, differentiable raycasting modules, and differentiable mapping/fusion blocks. One can use these blocks to construct SLAM systems that allow gradients to flow all the way from the outputs of the system (map, trajectory) to the inputs (raw color/depth images, parameters, calibration, etc.).```python
rgbdimages = RGBDImages(colors, depths, intrinsics)
slam = PointFusion()
pointclouds, recovered_poses = slam(rgbdimages)
pointclouds.plotly(0).show()
```## Installation
### Requirements
- `pytorch>=1.6.0` (for other pytorch versions see [here](#install-from-local-clone-recommended))### Using pip (Experimental)
`pip install gradslam`
### Install from GitHub
`pip install 'git+https://github.com/gradslam/gradslam.git'`
### Install from local clone (Recommended)
```
git clone https://github.com/krrish94/chamferdist.git
cd chamferdist
pip install .
cd ..
git clone https://github.com/gradslam/gradslam.git
cd gradslam
pip install -e .[dev]
```### Verifying the installation
To verify if `gradslam` has successfully been built, fire up the python interpreter, and import!
```py
import gradslam as gs
print(gs.__version__)
```You should see the version number displayed.
## Citing gradslam
If you find `gradslam` useful in your work, and are writing up a report/paper about us, we'd appreciate if you cited us. Please use the following bibtex entry.
```
@inproceedings{gradslam,
title={gradSLAM: Dense SLAM meets automatic differentiation},
author={{Krishna Murthy}, Jatavallabhula and Saryazdi, Soroush and Iyer, Ganesh and Paull, Liam},
booktitle={arXiv},
year={2020},
}
```## Contributors
* Soroush Saryazdi
* Krishna Murthy Jatavallabhula
* Ganesh Iyer