Datasets:

Modalities:
Image
Text
Formats:
parquet
ArXiv:
License:
ninglixu commited on
Commit
5edf38f
·
verified ·
1 Parent(s): 961e098

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +97 -34
README.md CHANGED
@@ -1,34 +1,97 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- features:
5
- - name: condition
6
- dtype: image
7
- - name: lat
8
- dtype: float64
9
- - name: lon
10
- dtype: float64
11
- - name: heading
12
- dtype: float64
13
- - name: elevation
14
- dtype: float64
15
- - name: panoid
16
- dtype: string
17
- - name: theta
18
- dtype: int64
19
- - name: phi
20
- dtype: int64
21
- - name: fov
22
- dtype: int64
23
- splits:
24
- - name: train
25
- num_bytes: 4626868770.85
26
- num_examples: 99825
27
- download_size: 4740521476
28
- dataset_size: 4626868770.85
29
- configs:
30
- - config_name: default
31
- data_files:
32
- - split: train
33
- path: data/train-*
34
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ dataset_info:
4
+ features:
5
+ - name: condition
6
+ dtype: image
7
+ - name: lat
8
+ dtype: float64
9
+ - name: lon
10
+ dtype: float64
11
+ - name: heading
12
+ dtype: float64
13
+ - name: elevation
14
+ dtype: float64
15
+ - name: panoid
16
+ dtype: string
17
+ - name: theta
18
+ dtype: int64
19
+ - name: phi
20
+ dtype: int64
21
+ - name: fov
22
+ dtype: int64
23
+ splits:
24
+ - name: train
25
+ num_bytes: 4626868770.85
26
+ num_examples: 99825
27
+ download_size: 4740521476
28
+ dataset_size: 4626868770.85
29
+ configs:
30
+ - config_name: default
31
+ data_files:
32
+ - split: train
33
+ path: data/train-*
34
+ ---
35
+
36
+ # Satellite to GroundScape - Large-scale Consistent Ground View Generation from Satellite Views
37
+
38
+ [**🌐 Homepage**](https://gdaosu.github.io/sat2groundscape/) | [**📖 arXiv**](https://arxiv.org/abs/2504.15786)
39
+
40
+ ## Introduction
41
+ Generating consistent ground-view images from satellite imagery is challenging, primarily due to the large discrepancies in viewing angles and resolution between satellite and ground-level domains. Previous efforts mainly concentrated on single-view generation, often resulting in inconsistencies across neighboring ground views. In this work, we propose a novel cross-view synthesis approach designed to overcome these challenges by ensuring consistency across ground-view images generated from satellite views. Our method, based on a fixed latent diffusion model, introduces two conditioning modules: satellite-guided denoising, which extracts high-level scene layout to guide the denoising process, and satellite-temporal denoising, which captures camera motion to maintain consistency across multiple generated views. We further contribute a large-scale satellite-ground dataset containing over 100,000 perspective pairs to facilitate extensive ground scene or video generation. Experimental results demonstrate that our approach outperforms existing methods on perceptual and temporal metrics, achieving high photorealism and consistency in multi-view outputs.
42
+
43
+ ## Description
44
+ The Sat2GroundScape contains 99,825 pairs of satellite-ground data in perspective format. Including:
45
+ * <strong>condition</strong>: [256x256x3] satellite rgb texture, rendered from ground-level camera.
46
+ * <strong>lat, lon</strong>: latitude, longtitude of the ground image.
47
+ * <strong>elevation</strong>: elevation (meters) of the ground image
48
+ * <strong>heading</strong>: the heading (degrees) of the ground image in panaroma format.
49
+ * <strong>pano_id</strong>: used for downloading corresponding GT ground-view image in panaroma format.
50
+ * <strong>theta,phi,fov</strong>: used for cropping out the perspective image from the panaroma image with theta,phi for cropping center, fov for cropping range.
51
+
52
+ ## Downloading Ground-view panaroma image
53
+ Each GT ground-view image is associated with a unique ID, pano_id. Please refer to https://github.com/robolyst/streetview for downloading the original ground-view image (512x1024x3).
54
+
55
+ ```
56
+ from streetview import get_streetview
57
+ image = get_streetview(
58
+ pano_id="z80QZ1_QgCbYwj7RrmlS0Q",
59
+ api_key=GOOGLE_MAPS_API_KEY,
60
+ )
61
+ image.save("image.jpg", "jpeg")
62
+ ```
63
+
64
+ ## Panaroma to Perspective
65
+ Given theta, phi, fov, we can crop the perspective image from the panaroma image. Please refer to https://github.com/fuenwang/Equirec2Perspec.
66
+
67
+ ```
68
+ import os
69
+ import cv2
70
+ import Equirec2Perspec as E2P
71
+
72
+ if __name__ == '__main__':
73
+ equ = E2P.Equirectangular('src/image.jpg') # Load equirectangular image
74
+
75
+ #
76
+ # FOV unit is degree
77
+ # theta is z-axis angle(right direction is positive, left direction is negative)
78
+ # phi is y-axis angle(up direction positive, down direction negative)
79
+    # height and width is output image dimension
80
+ #
81
+    img = equ.GetPerspective(60, 0, 0, 720, 1080) # Specify parameters(FOV, theta, phi, height, width)
82
+ ```
83
+
84
+
85
+
86
+ ## Citation
87
+ **BibTex:**
88
+ ```bibtex
89
+ @inproceedings{xu2024geospecific,
90
+ title={Geospecific View Generation Geometry-Context Aware High-Resolution Ground View Inference from Satellite Views},
91
+ author={Xu, Ningli and Qin, Rongjun},
92
+ booktitle={European Conference on Computer Vision},
93
+ pages={349--366},
94
+ year={2024},
95
+ organization={Springer}
96
+ }
97
+ ```