-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (92 loc) · 3.56 KB
/
index.html
File metadata and controls
92 lines (92 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Immersity AI Sandbox</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
body {
background-color: #121212;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
padding: 20px;
}
.logo {
margin-bottom: 10px;
}
.logo img {
width: 287px;
height: auto;
}
.container {
max-width: 800px;
text-align: center;
}
h1 {
font-size: 2.0rem;
margin-bottom: 20px;
}
p {
font-size: 1.1rem;
margin-bottom: 15px;
color: #bbbbbb;
}
.link-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.link {
background-color: #1f1f1f;
color: #00bcd4;
text-decoration: none;
padding: 15px 20px;
border-radius: 5px;
font-size: 1.1rem;
transition: background-color 0.3s;
}
.link:hover {
background-color: #2c2c2c;
}
</style>
</head>
<body>
<div class="logo">
<img src="images/IAI_logo.png" alt="Immersity AI Logo">
</div>
<div class="container">
<h1>Sandbox</h1>
<p>Explore our suite of interactive tools for creating and visualizing immersive 3D content.</p>
<div class="link-container">
<a class="link" href="/LIF/index.html">/LIF: Inspect and create LIF files</a>
<a class="link" href="/LIF/encodeSBS.html">/SBS: Create LIF files from SBS image</a>
<a class="link" href="/genAI/index.html">/genAI: Create LIF files from prompt</a>
<a class="link" href="/VIZ/index.html">/VIZ: Visualize LIF with camera tracking</a>
<a class="link" href="/VIZ/preset.html">/preset: Test presets and save generated videos</a>
<a class="link" href="/VIZ/threeDemo.html">/threeJS: Mixing 3D Geometry with LIF</a>
<a class="link" href="/webXR/index.html">/webXR: LIF renderer</a>
<a class="link" href="/DB/index.html">/DB: Interactive wall of LIF thumbnails</a>
<a class="link" href="/Analytics/index.html">/Analytics: Immersity AI Analytics (Requires Leia credentials)</a>
<a class="link" href="/webXR/StereoPlayer/index.html">/StereoPlayer: WebXR SBS 3D Video Player</a>
<a class="link" href="/webXR/RGBDPlayer/index.html">/RGBDPlayer: WebXR RGBD Video Player</a>
<a class="link" href="/webXR/LDIPlayer/index.html">/LDIPlayer: WebXR LDI Video Player</a>
<a class="link" href="/webXR/Spark/index.html">/Spark: Spark GS Viewer</a>
<a class="link" href="/TrackingTest/index.html">/TrackingTest: Test for face tracking from webcam</a>
<a class="link" href="https://immersity-webview-xr.leiapix.com/">LeiaPix Web</a>
<a class="link" href="https://immersity-webview-xr.leiapix-qa.com/">LeiaPix Web QA</a>
<a class="link" href="https://lpxwbxr-112-immersity-webview-xr.leiapix-development.com/">LeiaPix Web Dev</a>
</div>
</div>
</body>
</html>