-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.46 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./niivue.css" />
<title>Niivue Neglect Predictions</title>
</head>
<body>
<header>
<button id="openBtn">Open Lesion Map</button>
<label for="cocLetters">letters CoC (-1..1)</label>
<input style="width: 7em" type="number" id="cocLetters" min="-1" value ="0.87" max="1"/>
<label for="cocBells">bells CoC (-1..1)</label>
<input style="width: 7em" type="number" id="cocBells" min="-1" value ="0.81" max="1"/>
<label for="copyScore">copying score (0..8)</label>
<input style="width: 7em" type="number" id="copyScore" min="0" value ="2" max="8"/>
<button id="predictBtn">Prediction</button>
<label for="maskSlider">Mask Opacity</label>
<input
type="range"
min="1"
max="255"
value="64"
class="slider"
id="maskSlider"
/>
<label for="lesionSlider">Lesion Opacity</label>
<input
type="range"
min="1"
max="255"
value="128"
class="slider"
id="lesionSlider"
/>
<button class="btn btn-success" onclick=" window.open('https://github.com/niivue/niivue-neglect','_blank')">About</button>
</header>
<main id="canvas-container">
<canvas id="gl1"></canvas>
</main>
<footer id="intensity"> </footer>
<script type="module" src="/main.js"></script>
</body>
</html>