Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tingelst/game

Geometric Algebra Multivector Estimation
https://github.com/tingelst/game

automatic-differentiation geometric-algebra optimization

Last synced: about 2 months ago
JSON representation

Geometric Algebra Multivector Estimation

Awesome Lists containing this project

README

        

![](game_logo.png)

# **G**eometric **A**lgebra **M**ultivector **E**stimation

GAME is framework for estimation of multivectors in geometric algebra with focus on, but not limited to, the Euclidean and conformal model.

## Docker
```
docker build -t tingelst/game .
```
```
docker run -v `pwd`:/home/game/game -p 8888:8888 -e PASSWORD=YOUR_PASSWORD -e USE_HTTPS=yes game
```

## Installation

The main external dependency of GAME is the Ceres optimization framework from Google.

On OSX we recommend building the homebrew formula from source:
``` bash
brew tap homebrew/science
brew install ceres-solver --build-from-source
```

On Linux we recommend following the installation instructions found here: http://ceres-solver.org/building.html.

To build GAME follow the steps below:
``` bash
$ git clone --recursive https://github.com/tingelst/game.git
$ cd game
$ mkdir build && cd build
$ cmake .. && make
```