-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.48 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
<html>
<head> <title>SR examples</title>
<script>
function but_orig() {
tar.src = "comp_orig.png";
tit.innerHTML = "Original image";
}
function but_nn() {
tar.src = "comp_nn.png";
tit.innerHTML = "Nearest-neighbour interpolation";
}
function but_bicubic() {
tar.src = "comp_bicubic.png";
tit.innerHTML = "Bicubic interpolation";
}
function but_lb() {
tar.src = "comp_example_based.png";
tit.innerHTML = "Example (learning)-based superresolution";
}
function but_our() {
tar.src = "comp_rec.png";
tit.innerHTML = "Our algorithm";
}
</script>
</head>
<h1> Algorithm example </h1> <h2>(work in progress)</h2>
<table>
<td width=270>
<center>
<span id=lr>Low-resolution</span><br>
<img id=lrimg src=comp_lr.png>
<p>
<input style="width:230;height:50;" onclick="but_orig()" type=button value="Original image"> <br>
<input style="width:230;height:50;" onclick="but_nn()" id=but_nn type=button value="Nearest-neighbour interpolation"> <br>
<input style="width:230;height:50;" onclick="but_bicubic()" id=but_bicubic type=button value="Bicubic interpolation"> <br>
<input style="width:230;height:50;" onclick="but_lb()" id=but_lb type=button value="Learning-based SR (Kim et al.)"> <br>
<input style="width:230;height:50;" onclick="but_our()" id=but_our type=button value="Our algorithm"> <br>
</center>
<td width=512>
<center>
<span id=tit>Nearest-neighbour interpolation</span><br>
<img id=tar src=comp_nn.png>
</center>
<td>
</table>
<p>
<a href="http://tx.technion.ac.il/~ido">Back to the main page</a>
</html>