-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex_vr.html
More file actions
43 lines (35 loc) · 1.34 KB
/
index_vr.html
File metadata and controls
43 lines (35 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Brain Vis</title>
</head>
<script type="text/javascript" src="js/utils/parsingData.js"></script>
<script src="js/external-libraries/queue.js"></script>
<script>
loadVisualization = function (folderName) {
queue()
.defer(setFolder,folderName)
.awaitAll( function() {
console.log(folder);
});
}
</script>
<body>
<h1>Welcome</h1>
Click on the name of the dataset to visualize it in a desktop compatible version. If you want to use your Oculus Rift click on
"Oculus Vx" according to the version of OR you are using. To enable head tracking first download "oculus rest"
<a href="https://github.com/possan/oculus-rest/">here</a>.
<h2>Upload your Data <a href="upload.html">here</a> </h2>
<h2>Structural Connectome</h2>
<ul>
<li>
<a onclick="location.href=this.href+'?dataset=Demo1&vr=0&load=0';return false;" href="visualization.html">Complete Connectome</a>
   
<a onclick="location.href=this.href+'?dataset=Demo1&vr=1&load=0';return false;" href="visualization.html">Oculus V1</a>
   
<a onclick="location.href=this.href+'?dataset=Demo1&vr=2&load=0';return false;" href="visualization.html">Oculus V2</a>
</li>
</ul>
</body>
</html>