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
119
120
121
122
123
124
125
126
127
128
129
130
131
|
<!doctype html>
<html>
<head>
<title>MegaPixels</title>
<meta charset="utf-8" />
<meta name="author" content="Adam Harvey" />
<meta name="description" content="" />
<meta name="referrer" content="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<link rel='stylesheet' href='/assets/css/fonts.css' />
<link rel='stylesheet' href='/assets/css/tabulator.css' />
<link rel='stylesheet' href='/assets/css/css.css' />
<link rel='stylesheet' href='/assets/css/leaflet.css' />
<link rel='stylesheet' href='/assets/css/applets.css' />
</head>
<body>
<header>
<a class='slogan' href="/">
<div class='logo'></div>
<div class='site_name'>MegaPixels</div>
</a>
<div class='links'>
<a href="/datasets/">Datasets</a>
<a href="/research/">Research</a>
<a href="/about/">About</a>
</div>
</header>
<div class="content">
<div class='hero'>
<div class='inner'>
<div id="face_container">
<div class='currentFace'></div>
</div>
<div class='intro'>
<div class='headline'>
MegaPixels is an art project that explores the dark side of face recognition datasets and the future of computer vision.
</div>
<div class='buttons'>
<a href="/datasets/lfw/"><button class='important'>Find Your Face</button></a>
<a href="/analyze/"><button class='normal'>Analyze Your Face</button></a>
</div>
<div class='under'>
Made by Adam Harvey in collaboration with Jules Laplace, and in partnership with Mozilla.<br/>
<a href='/about/'>Read more about MegaPixels</a>
</div>
</div>
</div>
</div>
<section class='wide dataset-intro'>
<h2>Facial Recognition Datasets</h2>
<div class='right-sidebar'>
<h4>SUMMARY</h4>
<div class='meta'>
<div><div class='gray'>Found</div><div>275 datasets</div></div>
<div><div class='gray'>Created between</div><div>1993-2018</div></div>
<div><div class='gray'>Smallest dataset</div><div>20 images</div></div>
<div><div class='gray'>Largest dataset</div><div>10,000,000 images</div></div>
<div><div class='gray'>Highest resolution faces</div><div>450x500 (Unconstrained College Students)</div></div>
<div><div class='gray'>Lowest resolution faces</div><div>16x20 pixels (QMUL SurvFace)</div></div>
</div>
</div>
<p>
MegaPixels is an online art project that explores the history of facial recognition from the perspective of datasets. MegaPixels aims to unravel the meanings behind the data and expose the darker corners of the biometric industry that have contributed to its growth.
</p>
<p>
Through a mix of case studies, visualizations, and interactive tools, Megapixels will use facial recognition datasets to tell the history of modern biometrics. Many people have contributed to the development of facial recignition technology, both wittingly and unwittingly. Not only scientists, but also celebrities and regular internet users have played a part.
</p>
<p>
Facial recognition is a mess of contradictinos. It works, yet it doesn't actually work. It's cheap and accessible, but also expensive and out of control. Facial recognition research has achieved headline grabbing superhuman accuracies over 99.9%, yet in practice it's also dangerously inaccurate.
</p>
<p>
During a trial installation at Sudkreuz station in Berlin in 2018, 20% of the matches were wrong, a number so low that it should not have any connection to law enforcement or justice. And in London, the Metropolitan police had been using facial recognition software that mistakenly identified an alarming 98% of people as criminals, which perhaps is a crime itself.
</p>
</section>
<section class='wide dataset-intro'>
<h2>Dataset Portraits</h2>
<p>
We have prepared detailed case studies of some of the more noteworthy datasets, including tools to help you learn what is contained in these datasets, and even whether your own face has been used to train these algorithms.
</p>
<div class="dataset-list">
<a href="/datasets/lfw/">
<div class="dataset">
Labeled Faces in The Wild
</div>
</a>
<a href="/datasets/vgg_face2/">
<div class="dataset">
VGG Face2
</div>
</a>
</div>
</section>
</div>
<footer>
<div>
<a href="/">MegaPixels.cc</a>
<a href="/about/disclaimer/">Disclaimer</a>
<a href="/about/terms/">Terms of Use</a>
<a href="/about/privacy/">Privacy</a>
<a href="/about/">About</a>
<a href="/about/team/">Team</a>
</div>
<div>
MegaPixels ©2017-19 Adam R. Harvey /
<a href="https://ahprojects.com">ahprojects.com</a>
</div>
</footer>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.0.0/polyfill.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/97/three.min.js"></script>
<script src="https://unpkg.com/three.texttexture@18.10.24"></script>
<script src="/assets/demo/cloud/THREE.TextSprite.js"></script>
<script src="/assets/js/vendor/three.meshline.js"></script>
<script src="/assets/js/vendor/oktween.js"></script>
<script src="/assets/js/app/face.js"></script>
<script src="/assets/js/dist/index.js"></script>
</html>
|