-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (148 loc) · 5.63 KB
/
index.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE HTML>
<html>
<head>
<title>3D Pyramid Rendering - Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<!-- Header -->
<header id="header">
<strong class="logo">Report</strong>
</header>
<!-- Banner -->
<section id="banner">
<div class="content">
<header>
<h1>3D Hologram<br />
Pyramid Rendering</h1>
<p>by Team 3</p>
</header>
<p>Our project is to create a script that produces a synchronized video stream which can be projected in 3D onto a holographic pyramid. It can take live input from webcams or recorded video files and output the rendered visuals into a video file or to OBS Studio where it can consequently be channeled into video conferencing/streaming applications. </p>
<ul class="actions">
<li><a href="https://github.com/UCLComputerScience/COMP0016_2020_21_Team3" class="button big">Github</a></li>
</ul>
</div>
<span class="image object">
<img src="images/pic10.jpg" alt="" />
</span>
</section>
<!-- Section -->
<section>
<header class="major">
<h2>Development Team</h2>
</header>
<div class="features">
<article>
<span class="icon fa-gem"></span>
<div class="content">
<h3>Yong Hyun Cho (Paul)</h3>
<p>Researcher, Tester, Client Liaison</p>
<p>[email protected]</p>
</div>
</article>
<article>
<span class="icon solid fa-paper-plane"></span>
<div class="content">
<h3>Andrei Bubutanu</h3>
<p>Researcher, Programmer, Tester, Report Website Editor</p>
<p>[email protected]</p>
</div>
</article>
<article>
<span class="icon solid fa-rocket"></span>
<div class="content">
<h3>Xinyi (Coco) Liu</h3>
<p>Report website editor, Researcher, Tester</p>
<p>[email protected]</p>
</div>
</article>
</div>
</section>
<!-- Section -->
<section>
<header class="major">
<h2>Main approach</h2>
</header>
<div class="features">
<article>
<div class="content">
<ul class="list-group list-group-flush">
<li class="list-group-item">Use 4 cameras or 4 synchronized video streams,</li>
<li class="list-group-item">Use the OpenCV library(Python Script) to apply transformations on video streams that compose the 4 perspectives required.</li>
<li class="list-group-item">Use the video output and send it to broadcasting software (OBS, Microsoft Teams) through a virtual webcam</li>
<li class="list-group-item">Render the content to a pyramid</li>
</ul>
</div>
</article>
</div>
</section>
<!-- Section -->
<section>
<header class="major">
<h2>Project Management: Gantt Chart</h2>
</header>
<span class="container">
<img src="images/Gantt chart.png" class='gantt' alt="" />
</span>
</section>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
<!-- Search -->
<section id="search" class="alt">
<form method="post" action="#">
<input type="text" name="query" id="query" placeholder="Search" />
</form>
</section>
<!-- Menu -->
<nav id="menu">
<header class="major">
<h2>Menu</h2>
</header>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="requirements.html">Requirements</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="algorithms.html">Algorithms</a></li>
<li><a href="design.html">Design</a></li>
<li><a href="implementation.html">Implementation</a></li>
<li><a href="testing.html">Testing</a></li>
<li><a href="evaluation.html">Evaluation</a></li>
<li><a href="appendices.html">Appendices</a></li>
</ul>
</nav>
<!-- Section -->
<section>
<header class="major">
<h2>Get in touch</h2>
</header>
<ul class="contact">
<li class="icon solid fa-envelope"><a href="#">[email protected]</a></li>
<li class="icon solid fa-envelope"><a href="#">[email protected]</a></li>
<li class="icon solid fa-envelope"><a href="#">[email protected]</a></li>
</ul>
</section>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© University College London, IBM. All rights reserved. Design: Team 3</p>
</footer>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>