Skip to content

Commit 922de99

Browse files
committed
finalize readme for data repository
1 parent df4dfef commit 922de99

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ An online volumetric mapping-based approach for real-time detection of diverse d
2525
# Paper
2626
If you find this package useful for your research, please consider citing our paper:
2727

28-
* Lukas Schmid, Olov Andersson, Aurelio Sulser, Patrick Pfreundschuh, and Roland Siegwart. "**Dynablox: Real-time Detection of Diverse Dynamic Objects in Complex Environments**" in *ArXiv Preprint*, 2023. \[ [ArXiv](https://arxiv.org/abs/2304.10049) | [Video](https://www.youtube.com/watch?v=NA13fRWlqRQ) \]
28+
* Lukas Schmid, Olov Andersson, Aurelio Sulser, Patrick Pfreundschuh, and Roland Siegwart. "**Dynablox: Real-time Detection of Diverse Dynamic Objects in Complex Environments**" in *IEEE Robotics and Automation Letters (RA-L)*, 2023. \[ [ArXiv](https://arxiv.org/abs/2304.10049) | [Video](https://www.youtube.com/watch?v=NA13fRWlqRQ) \]
2929
```bibtex
30-
@inproceedings{schmid2023dynablox,
30+
@article{schmid2023dynablox,
3131
title={Dynablox: Real-time Detection of Diverse Dynamic Objects in Complex Environments},
3232
author={Schmid, Lukas, and Andersson, Olov, and Sulser, Aurelio, and Pfreundschuh, Patrick, and Siegwart, Roland},
33-
booktitle={ArXiv Preprint 2304.10049},
33+
booktitle={IEEE Robotics and Automation Letters (RA-L)},
3434
year={2023},
3535
volume={},
3636
number={},
@@ -92,9 +92,9 @@ roscd dynablox_ros/scripts
9292
```
9393

9494
We further collect a new dataset featuring diverse dynamic objects in complex scenes.
95+
The full dataset and description ca nbe found [here](https://projects.asl.ethz.ch/datasets/doku.php?id=dynablox).
9596
To download the processed ready-to-run data for our demos, use the provided script:
9697
```bash
97-
pip install gdown # The script currently uses gdown.
9898
roscd dynablox_ros/scripts
9999
./download_dynablox_data.sh /home/$USER/data/Dynablox # Or your preferred data destination.
100100
@@ -132,7 +132,6 @@ roscd dynablox_ros/scripts
132132
4. You should now see dynamic objects being detected as the sensor moves through the scene:
133133
![Run Dynablox Example](https://user-images.githubusercontent.com/36043993/232140093-ee99a919-d2ad-4dc8-95ac-fa047b901f94.png)
134134

135-
136135
## Running and Evaluating an Experiment
137136

138137
### Running an Experiment

dynablox_ros/launch/play_doals_data.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<launch>
44
<!-- Arguments -->
55
<arg name="bag_file" default="" /> <!-- Path to rosbag to be played -->
6-
<arg name="player_rate" default="1" /> <!-- 0.3 -->
6+
<arg name="player_rate" default="1" /> <!-- Realtime factor to play data -->
77

88
<!-- Play the data -->
99
<node name="player" pkg="rosbag" type="play" args="--quiet --rate $(arg player_rate) $(arg bag_file) -d 1" />

dynablox_ros/launch/play_dynablox_data.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<launch>
44
<!-- Arguments -->
55
<arg name="bag_file" default="" /> <!-- Path to rosbag to be played -->
6-
<arg name="player_rate" default="1" /> <!-- 0.3 -->
6+
<arg name="player_rate" default="1" /> <!-- Realtime factor to play data -->
77

88
<!-- Play the data -->
99
<node name="player" pkg="rosbag" type="play" args="--quiet --rate $(arg player_rate) $(arg bag_file) -d 1" />

0 commit comments

Comments
 (0)