-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
executable file
·106 lines (94 loc) · 3.29 KB
/
about.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
<html>
<head>
<title>iStitch</title>
<!-- styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,100,500' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel="stylesheet">
<link href="css/material-fullpalette.min.css" rel="stylesheet">
<link href="css/ripples.min.css" rel="stylesheet">
<style type="text/css">
h1{
text-align: center;
}
.line{
background-color:black;
width:60%;
height:1px;
margin-bottom: 15px;
}
.glyphicon-user{
margin-right: 6px;
}
.card{
height: 250px;
}
.paper{
display: block;
margin-left: auto;
}
</style>
</head>
<body>
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">iStitch</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="profile.html">My Pictures</a></li>
<li><a href="about.html">About</a></li>
<li><a href="login.html" class="navbar-login">Login</a></li>
</ul>
</div>
</div>
<div class="panel panel-danger auth-status-color" >
<div class="panel-heading auth-status">
<h3 class="panel-title auth-status-title">Logged Out</h3>
</div>
</div>
<div class="container">
<div class="row" style="margin-left:0px;">
<div class="col-md-8">
<div class="card">
<div class="row">
<h1>What is iStitch</h1>
</div>
<center><div class="row line"></div></center>
<p>iStitch is a image processing system for corneal nerve quantification. It stitches images and videos into montages using the OpenCV stitching algorithm. It then filters the montages to isolate nerves and calculate statistics. Statistics include: corneal nerve fiber tortuosity (CNFT), corneal nerve branch density (CNBD), corneal nerve fiber density (CNFD) and corneal nerve fiber length (CNFL).</p>
<button class="paper">Research Paper</button>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="row">
<h1>Creators</h1>
</div>
<center><div class="row line"></div></center>
<p><span class="glyphicon glyphicon-user" aria-hidden="true"></span><b>Yash Vaishnav:</b> Medical Student</p>
<p><span class="glyphicon glyphicon-user" aria-hidden="true"></span><b>Stuart Rucker:</b> Processing Algorithms/Website</p>
<p><span class="glyphicon glyphicon-user" aria-hidden="true"></span><b>Kalen Frieberg:</b> Image Processing</p>
<p><span class="glyphicon glyphicon-user" aria-hidden="true"></span><b>Ayush A. Jain:</b> Website/Image Stitching</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.firebase.com/js/client/2.2.7/firebase.js"></script>
<script src="js/about.js"></script>
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Material Design for Bootstrap -->
<script src="js/material.min.js"></script>
<script src="js/ripples.min.js"></script>
<script>
$.material.init();
</script>
<script src="js/account.js"></script>
</body>
</html>