Datasets:

Modalities:
Image
Libraries:
Datasets
License:
atinfinity commited on
Commit
d7357eb
·
verified ·
1 Parent(s): e3b3e98

updated README

Browse files
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ ---
4
+
5
+ # Vision-Language Global Localization (VLG-Loc) Dataset
6
+
7
+ This dataset is for evaluation of Vision-Language Global Localization (VLG-Loc).
8
+
9
+ ## Dataset Structure
10
+
11
+ Each dataset directory contains the following files. Note: All camera images (`.png`) are pre-corrected for lens distortion.
12
+
13
+ - `left_camera_image.png`: Image from the rear-left camera of the robot.
14
+ - `center_camera_image.png`: Image from the front-facing camera of the robot.
15
+ - `right_camera_image.png`: Image from the rear-right camera of the robot.
16
+ - `data.yaml`: Contains metadata, file paths, and ground truth information for the sample.
17
+ - **Format:** A YAML file storing key-value pairs.
18
+ - **Example Content:**
19
+ ```yaml
20
+ task_label: global_localization
21
+ ground_truth_pose: # Ground truth pose (x, y, yaw) in the map frame
22
+ x: 1.4948672925333364
23
+ y: -0.2408375545348086
24
+ theta: -0.19592457986226722
25
+ left_camera_image_path: left_camera_image.png
26
+ center_camera_image_path: center_camera_image.png
27
+ right_camera_image_path: right_camera_image.png
28
+ pointcloud_path: pointcloud.npy
29
+ timestamp: 1756980768.4454215
30
+ ```
31
+ - `pointcloud.npy`: Point cloud data from the 2D LiDAR scan, saved as a NumPy array.
32
+ - **Format:** A NumPy `ndarray`.
33
+ - **Shape:** `(N, 2)`, where `N` is the number of points.
34
+ - **Data Type:** `float32`.
35
+ - **Content:** Each row represents a 2D point `(x, y)` in the robot's base coordinate frame.
36
+
37
+ ## Environments
38
+
39
+ The table below details the environments included in this dataset.
40
+
41
+ | Environment Name | Directory Name | Description |
42
+ |-------------|-----------------------|----------------------------------------------------------------------------|
43
+ | UG/UA (Uniform Geometry, Uniform Appearance) | env_ug_ua | An environment of identical columns arranged in a regular pattern. |
44
+ | UG/DA (Uniform Geometry, Diverse Appearance) | env_ug_da | An environment consisting of regularly placed bookshelves. |
45
+ | DG/UA (Diverse Geometry, Uniform Appearance) | env_dg_ua | An indoor scene with many pieces of furniture and frequent item repetition. |
46
+ | DG/DA (Diverse Geometry, Diverse Appearance) | env_dg_da | An indoor environment populated with numerous objects, where a high variety of furniture reduces item repetition. |
47
+ | Retail Store (Real) | env_retail_store_real | Real retail store environment (EZOHUB TOKYO). |
48
+ | Retail Store (Sim) | env_retail_store_sim | A simulated retail environment where appearances are substituted with alphanumeric labels. |
49
+
50
+ ## Acknowledgement
51
+
52
+ It was collected in several simulation environments and at the real-world retail store "EZOHUB TOKYO", in cooperation with SATUDORA HOLDINGS CO.,LTD.