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

A few small readme improvements #6

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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repository contains a C++ library that implements an invariant extended Kal

This filter can be used to estimate a robot's 3D pose and velocity using an IMU motion model for propagation. The following measurements are currently supported:
* Prior landmark position measurements (localization)
* Estiamted landmark position measurements (SLAM)
* Estimated landmark position measurements (SLAM)
* Kinematic and contact measurements

The core theory was developed by Barrau and Bonnabel and is presented in:
Expand All @@ -23,15 +23,15 @@ A ROS wrapper for the filter is available at [https://github.com/RossHartley/inv
* [Eigen3 C++ Library](http://eigen.tuxfamily.org/index.php?title=Main_Page)

### Installation Using CMake
```
```shell
mkdir build
cd build
cmake ..
make
```
invariant-ekf can be easily included in your cmake project by adding the following to your CMakeLists.txt:
```
find_package(inekf)
```cmake
find_package(inekf REQUIRED)
include_directories(${inekf_INCLUDE_DIRS})
```

Expand Down