This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
people.html
98 lines (94 loc) · 3.33 KB
/
people.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
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
<!--
Copyright 2018 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="ga.js"></script>
<title>Cartoon Set: An Image Dataset of Random Cartoons</title>
<!-- Top -->
<div class="top">
<table>
<tr>
<td class="top-left">
<span class="top-8m-text">Cartoon Set </span>
</td>
<td class="top-right">
<a href="index.html">Home</a>
<a href="download.html">Download</a>
<a href="people.html">Team</a>
</td>
</tr>
</table>
</div>
<div class="contents">
<div class="page">
<h2>Who are we?</h2>
<div class="pc">
<p>
We are part of the <a
href="https://research.google.com/teams/perception/" class="ref">Machine Perception</a>
organization at Google which tackles the hard
problems of understanding images, sounds, music and video.
<br><br>
If you have questions about the dataset, or would like to be notified of updates, please
subscribe to
<a href="https://groups.google.com/forum/#!forum/cartoonset-users" class="ref">Google Group: cartoonset-users</a>.
</div>
</div>
<div class="page">
<h2>People</h2>
<div class="pc">
The people who brought you this dataset:
<table>
<tr>
<td id="authors"></td>
</tr>
</table>
</div>
</div>
</div>
<!-- contents -->
<div class="tos">
<table>
<tr>
<td>
<img src="https://www.gstatic.com/images/branding/googlelogo/2x/googlelogo_dark_color_42x16dp.png" alt="Google">
</td>
<td class="tos-right">
<a href="https://www.google.com/">Google</a>
<a href="https://www.google.com/intl/en/about/">About Google</a>
<a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a>
<a href="https://www.google.com/intl/en/policies/terms/">Terms</a>
<a href="https://groups.google.com/forum/#!forum/cartoonset-users">Feedback</a>
</td>
</tr>
</table>
</div>
<script>
var authors = [
{name: 'Forrester Cole', img: 'people/fcole.jpg'},
{name: 'Inbar Mosseri', img: 'people/inbarm.png'},
{name: 'Dilip Krishnan', img: 'people/dilipkay.png'},
{name: 'Aaron Sarna', img: 'people/sarna.png'},
{name: 'Aaron Maschinot', img: 'people/amaschinot.png'},
{name: 'Bill Freeman', img: 'people/bill.jpg'},
{name: 'Shiraz Fuman', img: 'people/sfuman.jpg'},
];
for (var i = 0; i < authors.length; i += 1) {
var a = authors[i];
var img = $('<img>').attr('src', a.img);
$('<div class="author">').append($('<div class="img">').append(img)).append(
$('<div class="name">').html(a.name)).appendTo($('#authors'));
}
</script>