-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex_vis.html
More file actions
56 lines (44 loc) · 2.3 KB
/
index_vis.html
File metadata and controls
56 lines (44 loc) · 2.3 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
<!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);
//document.location.href = "visualization.html";
});
}
</script>
<body>
<h2>Connectome</h2>
This tool allows to visualize the Connectome that describes how the regions of the brain are interconnected.
Particularly, the tools enable to perform the exploration of the intrinsic geometry of the brain, by letting the user
switch quickly different topological spaces where the connectome is embedded.
With a simple and easy-to-use interface, users can explore all the connections with a edge-on-demand technique and focus on
very specific area by switching on and off regions of the brain. Simple analytics such as nodal strength and shortest path
trees can be computed on the fly. This tool has been developed with virtual reality in mind and it is compatible with
Head Mounted Displays such as Oculus Rift (both DK1 and DK2).
<h3>Acknoledgement</h3>
The tool was entirely developed by Giorgio Conte who belongs to the <a href="https://www.evl.uic.edu/creativecoding/">Creative Coding Research Group</a>, directed by Prof.
Angus Forbes. The research group is part of the <a href="https://www.evl.uic.edu">Electronic Visualization Lab (EVL)</a> at University of Illinois at Chicago (UIC).
This research is being done in collaboration with Alex Leow, Olusola Ajilore, and Allen Ye, all belonging to UIC Department of Psychiatry.
<h2>Upload your Data <a href="upload.html">here</a> </h2>
<h2>Demo</h2>
<ul>
<li>
<a onclick="location.href=this.href+'?dataset=Demo1&vr=0&load=0';return false;" href="visualization.html">Demo 1</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>