hpotechius commited on
Commit
d7149d7
·
verified ·
1 Parent(s): 7834c85

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -1
README.md CHANGED
@@ -3,6 +3,8 @@ license: cc-by-nc-4.0
3
  tags:
4
  - 3d-reconstruction
5
  - photogrammetry
 
 
6
  ---
7
 
8
  # EAH Dataset
@@ -19,4 +21,68 @@ Using a DJI Mavic Pro 2 drone, multiple videos were recorded of the three buildi
19
  <img src="https://cdn-uploads.huggingface.co/production/uploads/6331b00ab7b8e9d6e89a5dc0/PpckOkXQsSvaPA71z1Snq.webp" width="512">
20
  <br>
21
  <em>Figure 1: Visualization of all three building reconstructions, including rendered camera positions and example comparisons between real images and their corresponding rendered views.</em>
22
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  tags:
4
  - 3d-reconstruction
5
  - photogrammetry
6
+ task_categories:
7
+ - image-to-3d
8
  ---
9
 
10
  # EAH Dataset
 
21
  <img src="https://cdn-uploads.huggingface.co/production/uploads/6331b00ab7b8e9d6e89a5dc0/PpckOkXQsSvaPA71z1Snq.webp" width="512">
22
  <br>
23
  <em>Figure 1: Visualization of all three building reconstructions, including rendered camera positions and example comparisons between real images and their corresponding rendered views.</em>
24
+ </p>
25
+
26
+ ## Example: camera.json
27
+ This file contains the orientation for each camera:
28
+ ```json
29
+ [
30
+ {
31
+ "name": "2023-12-16_H123_S00_frame_000000",
32
+ "matrix": [
33
+ [
34
+ -0.36218704547169456,
35
+ 0.0470962303839341,
36
+ -0.02439450093992581,
37
+ 4.864710171746611
38
+ ],
39
+ [
40
+ -0.011334934698936936,
41
+ -0.2331992996061323,
42
+ -0.28192589171372706,
43
+ 7.814374531518212
44
+ ],
45
+ [
46
+ -0.05181376118229091,
47
+ -0.2781953167233997,
48
+ 0.2321966890489866,
49
+ -15.199963535169367
50
+ ],
51
+ [
52
+ 0.0,
53
+ 0.0,
54
+ 0.0,
55
+ 1.0
56
+ ]
57
+ ]
58
+ },
59
+ ...
60
+ ```
61
+
62
+ ## Example: meta.json
63
+ This file contains the capture time range (start and end timestamps), the mesh center position (latitude and longitude) for each building, and the corresponding camera properties.
64
+ ```json
65
+ {
66
+ "building": "123",
67
+ "time": {
68
+ "start": "2023-12-16T14:04:30Z",
69
+ "end": "2023-12-16T14:47:00Z"
70
+ },
71
+ "position": {
72
+ "latitude": 50.918489,
73
+ "longitude": 11.568956
74
+ },
75
+ "camera" : {
76
+ "width": 3840,
77
+ "height": 2160,
78
+ "f": 3099.1976427399018,
79
+ "cx":-7.400794341491066,
80
+ "cy":-25.280509058365258,
81
+ "k1":-0.0027277484561097185,
82
+ "k2":0.013177854331186076,
83
+ "k3":-0.010827747284070439,
84
+ "p1":-0.0015060061379312184,
85
+ "p2":-0.0010258224524181574
86
+ }
87
+ }
88
+ ```