forked from tim-dav/cnn-sar-despeckle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 1.08 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
<html>
<head>
<title>Reference-Free Despeckling</title>
<meta content="">
<style>
body, html {
height: 100%;
width: 100%;
color: #fff;
margin: 0;
padding: 0;
overflow: hidden;
font-family: "Calibri";
}
body {
background-image: url("images/title.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
a {
color: #fff;
}
.content-wrapper {
margin: 0 50px;
text-align: center;
height: 100%;
}
.vertical-center {
position: absolute;
top: 70%;
transform: translateY(-50%);
width: 100%;
}
</style>
</head>
<body>
<div class="content-wrapper">
<div class="vertical-center">
<h1>
Reference-Free Despeckling of Synthetic-Aperture Radar Images Using a
Deep Residual Convolutional Network
</h1>
<h3>
A paper by Timothy Davis, Vinit Jain, Olivier D’Hondt, Sbastien Valade, Andreas Ley, Olaf Hellwich
</h3>
<div>
Site under construction. Please check back soon or visit our <a href="https://github.com/tim-dav/cnn-sar-despeckle">repository</a>.
</div>
</div>
</div>
</body>
</html>