Skip to content
Snippets Groups Projects
Commit 6e409cf6 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

Update README.md

parent 2b8ca91a
No related branches found
No related tags found
No related merge requests found
A C++ Toolbox with utilities for 2D laser scan processing, made at IRI (www.iri.upc.edu) A C++ Toolbox with utilities for 2D laser scan processing, made at IRI (www.iri.upc.edu).
# Installation
Clone the repository in your chosen directory. In a terminal:
```
cd <your/path>
git clone <repo-link>
```
Create a directory to build all the source files:
```
$ mkdir build
$ cd build
```
Compile the source files:
```
$ cmake ..
$ make
```
## Optional dependencies
**Canonical Scan Matching - CSM**
To enable the compilation of iterative closest point algorithms, [CSM](https://github.com/AndreaCensi/csm) should be installed. Clone, compile and install:
```
cd <your/path>
git clone https://github.com/AndreaCensi/csm.git
cd csm
cmake .
make
sudo make install
```
CSM depends on GSL that you probably have installed already. To install it:
```
sudo apt install libgsl-dev
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment