vslamlab commited on
Commit
c1c33db
·
verified ·
1 Parent(s): be86411

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md CHANGED
@@ -1,3 +1,78 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ pretty_name: Minimal Texture Dataset for RGB-D SLAM
4
+ tags:
5
+ - slam
6
+ - rgbd
7
+ - visual-odometry
8
+ - robotics
9
+ - realsense
10
  ---
11
+
12
+ # Minimal Texture Dataset for RGB-D SLAM
13
+
14
+ RGB-D sequences recorded with an Intel RealSense D435i over low-texture conceptual-geometry and
15
+ sand scenes at DLR (German Aerospace Center), with millimeter-accurate ground truth from a Vicon
16
+ motion-capture system. The dataset was introduced for the evaluation of
17
+ [SID-SLAM: Semi-Direct Information-Driven RGB-D SLAM](https://ieeexplore.ieee.org/document/10058038)
18
+ (IEEE RA-L, 2023).
19
+
20
+ This repository is the authoritative re-upload of the dataset previously published on
21
+ [Zenodo (10.5281/zenodo.10453700)](https://zenodo.org/records/10453700), regenerated from the
22
+ original recordings. It extends the published set with the full first recording session and the
23
+ previously unpublished easy sequences.
24
+
25
+ - Homepage: https://www.dlr.de/en/rm/research/publications-and-downloads/datasets/minimal-texture-dataset-for-rgb-d-slam
26
+ - Integrated in [VSLAM-LAB](https://github.com/VSLAM-LAB/VSLAM-LAB) as dataset `minimal`
27
+
28
+ ## Contents
29
+
30
+ Sequences are grouped by recording day:
31
+
32
+ - `10-08/` — first session, 2021-10-08 (15 sequences: parallel_lines, circles, hexagon, triangle,
33
+ deformation_model, sand, square_with_circles, and loop variants)
34
+ - `10-14/` — second session, 2021-10-14 (18 sequences: the 14 published on Zenodo — triangle,
35
+ circle, square, hexagon, dodecagon, lines, the three circle_* loop sequences, sand_rocks — plus
36
+ forward_backward_01, circle_only_01, lru_01 and ardea_01)
37
+
38
+ Each sequence ships two files:
39
+
40
+ - `<day>/<name>.bag` — ROS1 bag (bz2-compressed) with the RealSense D435i streams:
41
+ - `/camera/color/image_raw` — rgb8, 1280x720 @ 30 Hz
42
+ - `/camera/aligned_depth_to_color/image_raw` — 16UC1 depth aligned to color, millimeters, 1280x720 @ 30 Hz
43
+ - `/camera/color/camera_info`, `/camera/aligned_depth_to_color/camera_info` — intrinsics
44
+ - `/camera/imu` — ~200 Hz (camera-to-IMU extrinsics not included)
45
+ - `/camera/extrinsics/depth_to_color`
46
+ - `<day>/<name>_groundtruth.txt` — Vicon ground-truth trajectory in TUM format
47
+ (`timestamp[s] tx ty tz qx qy qz qw`), evaluation-ready, same clock as the bag.
48
+
49
+ `T_vicon_camera.txt` (repo root) holds the Vicon-marker to `camera_color_optical_frame` extrinsic.
50
+
51
+ ## Calibration
52
+
53
+ Color intrinsics (identical for both sessions, zero distortion / plumb_bob, 1280x720):
54
+
55
+ ```
56
+ fx = 908.479248 fy = 907.841919
57
+ cx = 650.889160 cy = 364.692657
58
+ ```
59
+
60
+ The aligned depth stream shares these intrinsics by construction. Depth in meters = value / 1000.
61
+
62
+ ## Citation
63
+
64
+ ```bibtex
65
+ @article{fontan2023sid,
66
+ title={{SID-SLAM}: Semi-Direct Information-Driven {RGB-D SLAM}},
67
+ author={Font{\'a}n, Alejandro and Giubilato, Riccardo and Oliva, Laura and Civera, Javier and Triebel, Rudolph},
68
+ journal={IEEE Robotics and Automation Letters},
69
+ volume={8},
70
+ number={10},
71
+ pages={6387--6394},
72
+ year={2023}
73
+ }
74
+ ```
75
+
76
+ ## License
77
+
78
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)