-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (41 loc) · 1.93 KB
/
Copy pathindex.html
File metadata and controls
61 lines (41 loc) · 1.93 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
57
58
59
60
61
<html>
<head>
<script type="text/javascript" src="js/niivue.umd.js"></script>
<script type="text/javascript" src="js/opencv.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/viewer.js"></script>
<script type="text/javascript" src="js/drawer.js"></script>
<script type="text/javascript" src="js/nouislider.min.js"></script>
<script type="text/javascript" src="js/annotator.js"></script>
<link rel="stylesheet" href="css/nouislider.min.css">
<link rel="stylesheet" href="css/main.css">
<title>CACTAS</title>
</head>
<body>
<canvas id='viewer'></canvas>
<div id='tools' class='panel'>
<strong>Tolerance</strong>: <span id='tolerancelabel'>30</span><br>
<input type='range' min='1' max='50' value='30' id='tolerance' style='margin-top:5px;margin-bottom:5px'>
<br>
<strong>Window/Level</strong>: <span id='windowlabel'></span><br>
<div id='wlslider' style='margin-top:5px;margin-bottom:5px'></div>
</div>
<div id='stats' class='panel'>0
</div>
<div id='info' class='panel'>
<strong>CTRL + L Click</strong>: Label<br>
<strong>1/2 + L Click</strong>: Px Draw/Erase<br>
<strong>ALT + L Click</strong>: Auto W/L<br>
<strong>SHIFT + R Drag</strong>: Measure<br>
<strong>Space</strong>: Change view<br>
<strong>ALT</strong>: Hide Labels<br>
<strong>Q</strong>: MagicMode<br>
<strong>Z</strong>: Undo<br>
<strong>R</strong>: Reset View<br>
<strong>X</strong>: Save
</div>
<div id='credits' class='panel'>
<strong><a href='https://github.com/mpsych/CACTAS/#readme' target=_blank>CACTAS v0.1b</a></strong>
</div>
</body>
</html>