-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEnhancing.html
More file actions
79 lines (74 loc) · 4.3 KB
/
Enhancing.html
File metadata and controls
79 lines (74 loc) · 4.3 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
<!DOCTYPE HTML>
<!--
Hyperspace by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Generic - Hyperspace by HTML5 UP</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<a href="index.html" class="title">CUSP Capstone 2020</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="GAN.html" class="active">Details</a></li>
<!-- <li><a href="elements.html">Elements</a></li>-->
</ul>
</nav>
</header>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<section id="main" class="wrapper">
<div class="inner">
<h1 class="major">Enhancing Pre-disaster Images</h1>
<p style="text-align: justify"><strong>Interpolation methods - </strong>A diverse range of interpolation methods were applied to pixels to upsample the images including Nearest Neighbor, Bilinear and Bicubic interpolation.
The aforementioned methods are neither specified nor trained for the physical properties and contextual conditions (e.g., photogrammetric, spectrographic, refractive, atmospheric) inherent to satellite imagery.
Therefore, suffer from problems such as bleeding-edge border effects between adjacent pixels as well as within pixel averaging of values when spatial resolution higher than pixelation.
Also, since these images are taken from altitudes over 200 miles, the adjacent pixel values in conjunction with within-pixel value averaging often tend to result in high degrees of conflated spectral and spatial uncertainty and ambiguity.
</p>
<p style="text-align: justify"><strong>Neural network based upsampling - </strong>Although the literature for image super-resolution (improving the resolution of the images) is considered to be extensive,
much of this literature is focused upon the aesthetic visual enhancement of images versus the accurate forensic validity of such enhancement.
Also, the state of the art models from this literature do not emphasize satellite imagery, since these models tend to be predominantly (if not almost exclusively) trained on images from ground-based photodetection platforms.
Nevertheless, an attempt was made to upsample these images using a state of the art, RDNet model. An example is shown below.
</p>
<ul class="imagetypes-2">
<img src="images/enhance-001.png" alt="">
<img src="images/enhance-002.png" alt="">
<img src="images/enhance-003.png" alt="">
</ul>
<p style="padding-left: 13.0em">(a) Original image (b) Bicubic interpolation (c) Bilinear interpolation</p>
<ul class="imagetypes-2">
<img src="images/enhance-004.png" alt="">
<img src="images/enhance-005.png" alt="">
</ul>
<p style="padding-left: 19.0em">(d) Nearest Neighbour interpolation (e) RDNet upsampling</p>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="wrapper alt">
<div class="inner">
<ul class="menu">
<li>Copyright © 2020 All rights reserved.</li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>