-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebdiffusion.html
More file actions
118 lines (99 loc) · 4.7 KB
/
webdiffusion.html
File metadata and controls
118 lines (99 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1">
<title>ComNets | People</title>
<!-- Loading third party fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,700|" rel="stylesheet" type="text/css">
<link href="fonts/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Loading main css file -->
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src="js/ie-support/html5.js"></script>
<script src="js/ie-support/respond.js"></script>
<![endif]-->
</head>
<body>
<div id="site-content">
<div class="container">
<header class="site-header">
<a href="https://yasirzaki.net" id="branding" class="pull-left">
<img src="images/logo.png" alt="" class="logo">
<div class="logo-text">
<h1 class="site-title">ComNets</h1>
<Large class="site-description">Communication Networks Lab</Large>
</div>
</a>
<!-- Default snippet for navigation -->
<div class="main-navigation">
<button type="button" class="menu-toggle"><i class="fa fa-bars"></i></button>
<ul class="menu">
<li class="menu-item"><a href="https://yasirzaki.net">Home</a></li>
<li class="menu-item"><a href="mediacoverage.html">Media coverage</a></li>
<li class="menu-item current-menu-item"><a href="people.html">People</a></li>
<li class="menu-item"><a href="publications.html">Publications</a></li>
<!-- <li class="menu-item"><a href="gallery.html">Gallery</a></li> -->
<!-- <li class="menu-item"><a href="contact.html">Contact</a></li> -->
</ul> <!-- .menu -->
</div> <!-- .main-navigation -->
<div class="mobile-navigation"></div>
</header> <!-- .site-header -->
<main class="main-content">
<section data-bg-color="#4B0082"></section>
<h2 class="section-title">WebDiffusion</h2>
<br><br>
<div align="left" class="row">
<h2>Graphical User Interface (GUI)</h2>
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/WebDiffusion-GUI.png" height="auto" width="500" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">WebDiffusion's GUI. The top of the figure shows the text originated using the client-based approach, i.e., eventual alt text and nested divs information. The center of the figure shows both the original and the AI-generated images. The bottom of the figure allows study participants to score the quality of this AI-generated image, between 1 (poor) and 5 (excellent).</h3>
</div>
<br><br>
<div align="left" class="row">
<h2>Nasa.gov example</h2>
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/nasa-org.jpg" height="auto" width="700" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">Original website.</h3>
</div>
<div align="left" class="row">
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/nasa-client.jpg" height="auto" width="700" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">Client-side version.</h3>
</div>
<div align="left" class="row">
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/nasa-provider.jpg" height="auto" width="700" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">Provider version.</h3>
</div>
<br><br>
<div align="left" class="row">
<h2>CNN example</h2>
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/cnn-org.png" height="auto" width="700" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">Original website.</h3>
</div>
<div align="left" class="row">
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/cnn-client.png" height="auto" width="700" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">Client-side version.</h3>
</div>
<div align="left" class="row">
<div style="float:left;margin: 0px 40px 3px 4px;">
<img src="images/cnn-provider.png" height="auto" width="700" alt="image">
</div>
<h3 style="padding: 80px;text-align: justify;">Provider version.</h3>
</div>
<script src="js/jquery-1.11.1.min.js"></script>
<!-- <script src="http://maps.google.com/maps/api/js?sensor=false&language=en"></script> -->
<script src="js/plugins.js"></script>
<!-- <script src="js/app.js"></script> -->
</body>
</html>