sanjay810 commited on
Commit
d02072c
·
verified ·
1 Parent(s): 8b38fa9

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +189 -0
README.md ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: MV2 Dataset
3
+ license: other
4
+ language:
5
+ - en
6
+ task_categories:
7
+ - image-to-image
8
+ - depth-estimation
9
+ - image-segmentation
10
+ tags:
11
+ - autonomous-driving
12
+ - multi-view
13
+ - multi-vehicle
14
+ - drone
15
+ - neural-rendering
16
+ - novel-view-synthesis
17
+ - 3d-reconstruction
18
+ - urban-driving
19
+ - indian-roads
20
+ ---
21
+
22
+ # MV2 Dataset
23
+
24
+ MV2 is a multi-view and multi-vehicle urban driving dataset designed for research in novel view synthesis, neural rendering, 3D reconstruction, cross-view scene understanding, and autonomous-driving perception. The dataset contains synchronized image sequences captured from multiple viewpoints, including ground vehicles and aerial views, along with camera parameters required for geometry-aware learning and rendering.
25
+
26
+ The dataset is released for academic and research use. The full dataset is being made available here, and additional annotations such as segmentation masks for dynamic objects may be released in upcoming updates.
27
+
28
+ ## Dataset Details
29
+
30
+ ### Dataset Description
31
+
32
+ MV2 focuses on challenging real-world urban driving scenes with large viewpoint changes across vehicles and platforms. It is intended to support research on:
33
+
34
+ - Cross-view novel view synthesis
35
+ - Multi-vehicle and multi-camera scene reconstruction
36
+ - Ground-to-aerial and aerial-to-ground rendering
37
+ - Geometry-aware neural rendering
38
+ - Autonomous-driving scene understanding
39
+ - Dynamic-scene analysis in urban traffic environments
40
+
41
+ Unlike single-ego-vehicle driving datasets, MV2 includes multiple observation platforms, making it useful for studying extreme-baseline view synthesis and shared world modeling.
42
+
43
+ ### Dataset Sources
44
+
45
+ - **Repository:** TODO: add Hugging Face dataset URL
46
+ - **Project page:** TODO: add MV2 project page URL
47
+ - **Paper:** TODO: add paper/arXiv link
48
+ - **Code:** TODO: add GitHub repository link
49
+
50
+ ## Dataset Structure
51
+
52
+ The dataset is organized at the sequence level. Each sequence contains multiple views/platforms such as car, drone, scooty, and additional car-view variants.
53
+
54
+ A typical structure is:
55
+
56
+ ```text
57
+ MV2/
58
+ ├── seq1/
59
+ │ ├── car/
60
+ │ │ ├── images/
61
+ │ │ ├── poses/
62
+ │ │ └── intrinsics/
63
+ │ ├── drone/
64
+ │ │ ├── images/
65
+ │ │ ├── poses/
66
+ │ │ └── intrinsics/
67
+ │ ├── scooty/
68
+ │ │ ├── images/
69
+ │ │ ├── poses/
70
+ │ │ └── intrinsics/
71
+ │ └── car_front_left_forward/
72
+ │ ├── images/
73
+ │ ├── poses/
74
+ │ └── intrinsics/
75
+ ├── seq2/
76
+ │ └── ...
77
+ └── ...
78
+ ```
79
+
80
+ Each view contains RGB frames and corresponding camera parameters. File names follow a sequence-based frame indexing format such as:
81
+
82
+ ```text
83
+ car_front_000000.jpg
84
+ car_front_000000.npy
85
+ drone_000000.jpg
86
+ drone_000000.npy
87
+ scooty_front_000000.jpg
88
+ scooty_front_000000.npy
89
+ ```
90
+
91
+ ## Data Fields
92
+
93
+ The dataset may contain the following fields depending on the sequence and view:
94
+
95
+ | Field | Description |
96
+ |---|---|
97
+ | `images/` | RGB image frames for each camera/view |
98
+ | `poses/` | Camera pose matrices stored as `.npy` files |
99
+ | `intrinsics/` | Camera intrinsic matrices stored as `.npy` files |
100
+ | `scale_factors/` | Scale information for aligning reconstructed geometry, if provided |
101
+ | `masks/` | Dynamic object segmentation masks, planned for release in later updates |
102
+
103
+ ## Views / Platforms
104
+
105
+ The dataset includes multiple viewpoints:
106
+
107
+ | View | Description |
108
+ |---|---|
109
+ | `car` | Ground vehicle camera sequence |
110
+ | `scooty` | Two-wheeler/scooter-mounted camera sequence |
111
+ | `drone` | Aerial camera sequence |
112
+ | `car_front_left_forward` | Additional car-view variant for cross-view evaluation |
113
+
114
+ ## Usage
115
+
116
+ You can download the dataset using the Hugging Face Hub:
117
+
118
+ ```python
119
+ from huggingface_hub import snapshot_download
120
+
121
+ dataset_path = snapshot_download(
122
+ repo_id="YOUR_USERNAME/MV2",
123
+ repo_type="dataset"
124
+ )
125
+
126
+ print(dataset_path)
127
+ ```
128
+
129
+ Example for loading an image and camera parameters:
130
+
131
+ ```python
132
+ from pathlib import Path
133
+ from PIL import Image
134
+ import numpy as np
135
+
136
+ root = Path(dataset_path)
137
+
138
+ image_path = root / "seq1" / "drone" / "images" / "drone_000000.jpg"
139
+ pose_path = root / "seq1" / "drone" / "poses" / "drone_000000.npy"
140
+ intrinsics_path = root / "seq1" / "drone" / "intrinsics" / "drone_000000.npy"
141
+
142
+ image = Image.open(image_path).convert("RGB")
143
+ pose = np.load(pose_path)
144
+ intrinsics = np.load(intrinsics_path)
145
+
146
+ print(image.size)
147
+ print("Pose:", pose.shape)
148
+ print("Intrinsics:", intrinsics.shape)
149
+ ```
150
+
151
+ ## Intended Uses
152
+
153
+ MV2 is intended for academic and research applications, including:
154
+
155
+ - Novel view synthesis
156
+ - Neural rendering
157
+ - Multi-view 3D reconstruction
158
+ - Cross-view image synthesis
159
+ - Aerial-to-ground and ground-to-aerial scene understanding
160
+ - Dynamic urban-scene modeling
161
+ - Autonomous-driving perception research
162
+
163
+ ## Out-of-Scope Uses
164
+
165
+ The dataset should not be used as the sole source for deploying safety-critical autonomous-driving systems. It is a research dataset and may not cover all environmental, geographic, weather, lighting, or traffic conditions required for real-world deployment.
166
+
167
+ ## Dataset Creation
168
+
169
+ The dataset was collected in real-world urban driving environments using multiple camera platforms. The goal was to capture diverse viewpoints of the same or related scenes, enabling research on cross-view consistency, geometry-aware rendering, and shared scene understanding.
170
+
171
+ Camera parameters are provided to support 3D reconstruction, novel view synthesis, and geometry-based evaluation.
172
+
173
+ ## Ethical Considerations
174
+
175
+ The dataset contains real-world urban driving imagery. Users should avoid using the data for identifying individuals, tracking private persons, or any surveillance-related application. Researchers should follow applicable privacy, data protection, and responsible AI guidelines when using the dataset.
176
+
177
+ ## Contact
178
+
179
+ For questions, issues, or access-related queries, please contact:
180
+
181
+ ```text
182
+ Sanjay Bhargav Dharavath
183
+ sanjaytinku810@gmail.com
184
+ ```
185
+
186
+ ## Updates
187
+
188
+ - Initial full dataset release.
189
+ - Dynamic object segmentation masks are planned for a future update.