-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (38 loc) · 1.86 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
<html>
<head>
<title>Anaglyphs Online</title>
<link href="styles/Anaglyphs.css" rel="stylesheet" type="text/css">
</head>
<body>
<center><table width="100%" cellpadding="10">
<tr>
<td>
<h2>Anaglyphs</h2>
<div class="header-img" align="center">
<img src="images/Banner.png"><br clear="all">
</div>
<h2>What is it?</h2>
<p class="text"><a href="https://en.wikipedia.org/wiki/Anaglyph_3D">Anaglyphs</a> are images or movies that use filters, to
separate the two encoded images encoded to create a 3D effect. The tools here require
red/cyan 3D glasses found e.g.
<a href="https://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords=cyan+red+glasses">here</a>.
Enjoy and feel free to <a href="mailto:[email protected]">contact me</a> with comments or questions.
</p>
<h2>Tools and code</h2>
<p align="center"><a href="" onclick="window.open('DrawingPad.html');">Anaglyph Drawing Pad</a> - Draw in 3D</p>
<p align="center"><a href="" onclick="window.open('DualCamera.html');">Anaglyph Camera</a> - 3D Pictures from two cameras</p>
<p align="center"><a href="" onclick="window.open('FourierCamera.html');">Fourier Camera</a> - Explore Fourier Transforms</p>
<p align="center"><a href="" onclick="window.open('https://github.com/tproffen/Anaglyphs');">Code on Github</a></p>
<hr>
<p align="left" class="footer">© <a href="mailto:[email protected]">Thomas Proffen</a>, <span id="year"></span>.
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License"
style="border-width:0" align="right" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png"/></a>
</p>
</th></tr>
</table></center>
<script src="scripts/Anaglyphs.js"></script>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</body>
</html>