hdr_esim/README.md

51 lines
2.8 KiB
Markdown
Raw Normal View History

2018-10-29 18:13:45 +01:00
# ESIM: an Open Event Camera Simulator
2018-11-05 21:10:01 +01:00
[![ESIM: an Open Event Camera Simulator](http://rpg.ifi.uzh.ch/esim/img/youtube_preview.png)](https://youtu.be/ytKOIX_2clo)
2019-12-17 15:02:40 +01:00
This is the code for the 2018 CoRL paper **ESIM: an Open Event Camera Simulator** by [Henri Rebecq](http://henri.rebecq.fr), [Daniel Gehrig](https://danielgehrig18.github.io/) and [Davide Scaramuzza](http://rpg.ifi.uzh.ch/people_scaramuzza.html):
2018-10-29 18:13:45 +01:00
```bibtex
@Article{Rebecq18corl,
author = {Henri Rebecq and Daniel Gehrig and Davide Scaramuzza},
title = {{ESIM}: an Open Event Camera Simulator},
journal = {Conf. on Robotics Learning (CoRL)},
year = 2018,
month = oct
}
```
You can find a pdf of the paper [here](http://rpg.ifi.uzh.ch/docs/CORL18_Rebecq.pdf). If you use any of this code, please cite this publication.
2021-02-19 16:28:31 +01:00
## Python Bindings
Python bindings for the event camera simulator can be found [here](https://github.com/uzh-rpg/rpg_vid2e).
We now also support GPU support for fully parallel event generation!
2018-10-29 17:53:15 +01:00
## Features
- Accurate event simulation, guaranteed by the tight integration between the rendering engine and the event simulator
2018-10-30 08:26:32 +01:00
- Inertial Measurement Unit (IMU) simulation
2018-10-29 17:53:15 +01:00
- Support for multi-camera systems
- Ground truth camera poses, IMU biases, angular/linear velocities, depth maps, and optic flow maps
2018-10-30 08:26:32 +01:00
- Support for camera distortion (only planar and panoramic renderers)
2018-10-29 17:53:15 +01:00
- Different C+/C- contrast thresholds
- Basic noise simulation for event cameras (based on additive Gaussian noise on the contrast threshold)
- Motion blur simulation
- Publish to ROS and/or save data to rosbag
## Install
2018-10-30 08:27:38 +01:00
Installation instructions can be found in [our wiki](https://github.com/uzh-rpg/rpg_esim/wiki/Installation).
2018-10-29 17:53:15 +01:00
## Run
2018-10-30 08:27:38 +01:00
Specific instructions to run the simulator depending on the chosen rendering engine can be found in [our wiki](https://github.com/uzh-rpg/rpg_esim/wiki).
2018-10-29 18:13:45 +01:00
## Acknowledgements
We thank Raffael Theiler and Dario Brescianini for their contributions to ESIM.
This research was supported by by Swiss National Center of Competence Research Robotics (NCCR), Qualcomm (through the Qualcomm Innovation Fellowship Award 2018), the SNSF-ERC Starting Grant and DARPA FLA.
A significant part of ESIM uses components (spline trajectories, inertial measurement unit simulation, various utility functions) from the [ze_oss](https://github.com/zurich-eye/ze_oss) project.
2018-10-29 18:29:34 +01:00
ESIM depends on [UnrealCV](https://github.com/unrealcv/unrealcv) for the photorealistic rendering engine.
We also reused some [code samples](https://github.com/JoeyDeVries/LearnOpenGL.git) from the excellent [Lean OpenGL](https://learnopengl.com/) tutorial in our OpenGL rendering engine.
Finally, ESIM depends on the [Open Asset Import Library (assimp)](https://github.com/assimp/assimp) to load 3D models and Blender scenes within the OpenGL rendering engine.