https://github.com/prbonn/overlap_localization
chen2020iros: Learning an Overlap-based Observation Model for 3D LiDAR Localization.
https://github.com/prbonn/overlap_localization
learning lidar localization mcl monte-carlo
Last synced: about 1 month ago
JSON representation
chen2020iros: Learning an Overlap-based Observation Model for 3D LiDAR Localization.
- Host: GitHub
- URL: https://github.com/prbonn/overlap_localization
- Owner: PRBonn
- License: mit
- Created: 2020-07-03T12:13:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T22:26:57.000Z (about 2 years ago)
- Last Synced: 2025-04-02T08:11:44.945Z (about 2 months ago)
- Topics: learning, lidar, localization, mcl, monte-carlo
- Language: Python
- Homepage:
- Size: 14.4 MB
- Stars: 275
- Watchers: 19
- Forks: 68
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overlap-based 3D LiDAR Monte Carlo Localization
This repo contains the code for our IROS2020 paper: Learning an Overlap-based Observation Model for 3D LiDAR Localization.
It uses the [OverlapNet](https://github.com/PRBonn/OverlapNet) to train an observation model for Monte Carlo Localization and achieves global localization with 3D LiDAR scans.Developed by [Xieyuanli Chen](https://www.ipb.uni-bonn.de/people/xieyuanli-chen/) and [Thomas Läbe](https://www.ipb.uni-bonn.de/people/thomas-laebe/).
Localization results of overlap-based Monte Carlo Localization.
## Publication
If you use our implementation in your academic work, please cite the corresponding [paper](https://www.ipb.uni-bonn.de/pdfs/chen2020iros.pdf):
@inproceedings{chen2020iros,
author = {X. Chen and T. L\"abe and L. Nardi and J. Behley and C. Stachniss},
title = {{Learning an Overlap-based Observation Model for 3D LiDAR Localization}},
booktitle = {Proceedings of the IEEE/RSJ Int. Conf. on Intelligent Robots and Systems (IROS)},
year = {2020},
url={https://www.ipb.uni-bonn.de/pdfs/chen2020iros.pdf},
}## Dependencies
We are using standalone Keras with a TensorFlow backend as a library for neural networks.
The code was tested with Ubuntu **18.04** with its standard python version **3.6**.
In order to do training and testing on a whole dataset, you need an Nvidia GPU.
To use a GPU, first you need to install the Nvidia driver and CUDA, so have fun!
- CUDA Installation guide: [link](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html)
- System dependencies:
```bash
sudo apt-get update
sudo apt-get install -y python3-pip python3-tk
sudo -H pip3 install --upgrade pip
```- Python dependencies (may also work with different versions than mentioned in the requirements file)
```bash
sudo -H pip3 install -r requirements.txt
```- OverlapNet: To use this implementation, one needs to clone OverlapNet to the local folder by:
```bash
git clone https://github.com/PRBonn/OverlapNet
```## How to use
#### Quick use
For a quick demo, one could download the [feature volumes](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/feature_volumes.zip) and pre-trained sensor [model](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/model.weight), extract the feature volumes in the `/data` folder following the recommended [data structure](data/README.md), and then run:
```bash
cd src/
python3 main_overlap_mcl.py
```
One could then get the online visualization of overlap-based MCL as shown in the gif.#### More detailed usage
For more details about the usage and each module of this implementation, one could find them in MCL [README.md](src/README.md).#### Train a new observation model
To train a new observation model, one could find more information in prepare_training [README.md](src/prepare_training/README.md).#### Collection of preprocessed data
- KITTI Odometry Sequence 07: [download](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/kitti_07.zip).
- Pre-trained Sensor Model: [download](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/model.weight).
- Feature Volumes: [download](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/feature_volumes.zip).
- Map Data: [download](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/map.zip).
- Query Data: [download](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/query.zip).
- Training Data: [download](https://www.ipb.uni-bonn.de/html/projects/overlap_mcl/training.zip).## License
Copyright 2020, Xieyuanli Chen, Thomas Läbe, Cyrill Stachniss, Photogrammetry and Robotics Lab, University of Bonn.
This project is free software made available under the MIT License. For details see the LICENSE file.