Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package_dir_install #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -1,52 +1,59 @@
UKF-M - Python Implementation
================================================================================
# UKF-M - Python Implementation

## Download

Download
--------------------------------------------------------------------------------
You can download the source code at
https://github.com/CAOR-MINES-ParisTech/ukfm.

Installation
--------------------------------------------------------------------------------
## Installation

The Python package has been tested under Python 3.5 on a Ubuntu 16.04 machine.
To install:

1. Download the repo

```
git clone https://github.com/CAOR-MINES-ParisTech/ukfm.git
```
```

2. Install package requirement (numpy, matplotlib, etc)

```
cd ukfm
cd python
pip install -r requirements.txt
```

3. Keep into the Python folder and run

```
pip install .
```
or
pip install . -vvv
```

or

```
pip install -e .
```
The ``-e`` flag tells pip to install the package in-place, which lets you make

The `-e` flag tells pip to install the package in-place, which lets you make
changes to the code without having to reinstall every time.

Get Started
--------------------------------------------------------------------------------
## Get Started

Follow the 2D robot localization tutorial in the documentation, which is
available at
[https://caor-mines-paristech.github.io/ukfm/]
(https://caor-mines-paristech.github.io/ukfm/).

Citation
--------------------------------------------------------------------------------
## Citation

If you use this project for your research, please please cite

```
@article{brossard2019Code,
author={Martin Brossard and Axel Barrau and Silvère Bonnabe},
title={{A Code for Unscented Kalman Filtering on Manifolds (UKF-M)}},
year={2019},
}
```