-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (107 loc) · 4.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="https://getbootstrap.com/docs/3.3/favicon.ico">
<title>Narrow Jumbotron Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="narrow_home_files/bootstrap.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="narrow_home_files/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="narrow_home_files/jumbotron-narrow.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="narrow_home_files/album.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="narrow_home_files/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header clearfix">
<h3 class="text-muted text-center">Second Opinion</h3>
</div>
<div class="jumbotron">
<h2>Get a Second Opinion.</h2>
<p class="lead">Upload your X-ray, and our machine learning algorithm will analyze it.</p>
<label class="btn btn-lg btn-success" href="#" role="button">Upload
<input type="file" id="fileInput" name="file" class="d-none" />
</label>
</div>
<div class="row">
<div class="col-xs-12">
<img id="imageSrc" class="img-fluid" />
</div>
<div class="table-responsive">
<table class="table d-none text-center" id="results">
<thead>
<tr>
<th scope="col">Disease</th>
<th scope="col">Probability</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Consolidation</th>
<td></td>
</tr>
<tr>
<th scope="row">Infiltration</th>
<td></td>
</tr>
<tr>
<th scope="row">Pneumothorax</th>
<td></td>
</tr>
<tr>
<th scope="row">Effusion</th>
<td></td>
</tr>
<tr>
<th scope="row">Nodule Mass</th>
<td></td>
</tr>
<tr>
<th scope="row">Atelectasis</th>
<td></td>
</tr>
<tr>
<th scope="row">Other Rare Classes</th>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row marketing center-block">
<div class="col-xs-12 col-md-6 text-center">
<h4>Tip</h4>
<p>If you don't have your X-ray in a digital format, place your X-ray on a sheet of white paper and snap a pic!</p>
<p><img class="center-block" style="max-width: 100%; margin: auto; display: block;" src="example.jpg"></img></p>
</div>
<div class="col-xs-12 col-md-6 text-center">
<h4>Help us out!</h4>
<p>Our algorithm becomes stronger the more it's used. With your help we can surpass physician accuracy!</p>
<p><img class="center-block" style="max-width: 100%; margin: auto; display: block;" src="colorhead.jpg"></img></p>
</div>
</div>
<footer class="footer text-center">
<p>Gene Demo, Vincent Chang, Paul Boguslavskiy, Shubh Varma</p>
<p>© 2018 MediHack Entry, Inc.</p>
</footer>
</div> <!-- /container -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]"> </script>
<script src="test.js" "text/javascript"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="narrow_home_files/ie10-viewport-bug-workaround.js"></script>
</body></html>