-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
187 lines (135 loc) · 3.63 KB
/
Copy pathindex.html
File metadata and controls
187 lines (135 loc) · 3.63 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<html>
<head>
<title>CIRL Memphis</title>
</head>
<!------------------------- Navigation Bar Style ------------------------->
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: grey;
color: white;
.titleBlk {
border: 5px outset red;
background-color: lightblue;
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<!------------------------- Image Slider ------------------------->
<style>
.before,
.after {
margin: 0;
}
.before figcaption,
.after figcaption {
background: #fff;
border: 1px solid #c0c0c0;
border-radius: 12px;
color: #2e3452;
opacity: 0.8;
padding: 12px;
position: absolute;
top: 50%;
transform: translateY(-50%);
line-height: 100%;
}
.before figcaption {
left: 12px;
}
.after figcaption {
right: 12px;
}
img-comparison-slider {
--divider-width: 2px;
--divider-color: #c0c0c0;
--default-handle-opacity: 0.3;
}
</style>
<!------------------------- Title Block Style ------------------------->
<style>
.titleBlk {
background-image: url("https://sim.hms.harvard.edu/wp-content/uploads/2014/11/prophase.jpg");
text-align: center;
}
</style>
<!------------------------- Title Block ------------------------->
<div class="titleBlk">
<br>
<h2><p style="color:white;"> Deep-learning assisted Super-Resolution Microscopy <p></h2>
<h4><p style="color:white;">University of Memphis</p></h4><br>
</div>
<!------------------------- Navigation Bar ------------------------->
<div class="topnav">
<a class="active" href="index.html">Home</a>
<a href="Resources.html">Resources</a>
<a href="Online_Tools.html">Online Tools</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
<div style="padding-left:16px">
<p>Tackling image translation problems</p>
</div>
<!------------------------------ Body --------------------->
<body style="background-color:whitesmoke;">
<ul>
<li><a href="#home">Home</a></li> <br>
<li><a href="Super-Resolution.html">Super-Resolution</a></li> <br>
</ul>
<h2 style="text-align:center;">3D SIM Super-Resolution U-Net </h2>
<center><img src="3d_network.png" alt="3d U-Net" width="460" height="345" class ="center"></center>
<p style="text-align:center;">(C) 2022</p>
<script
defer
src="https://unpkg.com/img-comparison-slider@7/dist/index.js"
></script>
<link
rel="stylesheet"
href="https://unpkg.com/img-comparison-slider@7/dist/styles.css"
/>
<div class="center">
<img-comparison-slider>
<img slot="first" src="wf.png" width="100%" />
<figcaption>Before</figcaption>
<img slot="second" src="gt.png" width="100%" />
</img-comparison-slider>
</div>
<center> Axial Super-Resolution </center> <br>
<center>
<img-comparison-slider>
<figure slot="first" class="before">
<img width="100%" src="wf.png" style="width:600px;height:100px;">
<figcaption>Wide Field</figcaption>
</figure>
<figure slot="second" class="after">
<img width="100%" src="gt.png" style="width:600px;height:100px;">
<figcaption>Super-Resolution</figcaption>
</figure>
</img-comparison-slider>
<br><br><br><br>
</center>
</body>
</html>