-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
409 lines (274 loc) · 8.8 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE html>
<html>
<head>
<title>Making Face Filters - PCD 2020 - Workshop</title>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
</style>
</head>
<body>
<textarea id="source">
class: center, middle, inverse
# Making Face Filters (inside a browser!)
### Shailendra Paliwal ([@ziscore](http://shailendra.me) 👨🏼💻, 🏃🏼♂️, 🚵🏼♂️)
---
## `shailendra.me/face-filters-demos`
![](assets/qr_link.png)
---
# Workshop Agenda
By the end of this workshop, you will know how to track faces and draw objects on them. That's a face filter, right?
But, before we arrive at the end, we need to know a few things...
1. What happens under the hood with face filters?
---
# Workshop Agenda
By the end of this workshop, you will know how to track faces and draw objects on them. That's a face filter, right?
But, before we arrive at the end, we need to know a few things...
1. What happens under the hood with face filters?
1. Face Detection vs Face Tracking vs Face Recognition
1. Using an External Library
---
# Workshop Agenda
By the end of this workshop, you will know how to track faces and draw objects on them. That's a face filter, right?
But, before we arrive at the end, we need to know a few things...
1. What happens under the hood with face filters?
1. Face Detection vs Face Tracking vs Face Recognition
1. Using an External Library
1. [Hands On] Tracking a Face
1. How do these libraries work?
1. [Hands On] Recreating some classic Face Filters
---
class: center, middle, inverse
# Face Detection
vs
# Face Tracking
vs
# Face Recognition
---
# Using the webcam
```js
function setup() {
// add a webcam capture
capture = createCapture(VIDEO);
// show this capture
capture.show();
// create a canvas for this capture
createCanvas(400, 400);
}
```
.footnote[Go directly to [the P5 Editor - WebcamDemo](https://editor.p5js.org/zscore/full/NAnfbmQv)]
---
class: middle
# Is this enough though?
Wouldn't it be cool if we could add trails like a Vector to this as well?
---
# Is this enough though?
Wouldn't it be cool if we could add trails like a Vector to this as well?
```js
function setup() {
createCanvas(400, 400);
capture = createCapture(VIDEO);
capture.hide();
}
function draw() {
// display at half opacity
tint(255, 20);
image(capture, 0, 0, width, width * capture.height / capture.width);
}
```
.footnote[Go directly to [the P5 Editor - demo0](https://editor.p5js.org/zscore/full/m1DS7Ijr)]
.footnote[or [try the demo](https://shailendra.me/face-filters-demos/demo0)]
---
# Using External Libraries
Programmers create black boxes that other folks can use without going into the details of how does the black box works.
![](assets/giants.jpg)
---
# Tracking a face
## Enters *CLMTracker*
> clmtrackr is a javascript library for fitting facial models to faces in images and video, and can be used for getting precise positions of facial features in an image, or precisely tracking faces in video.
Seems good enough?
.footnote[CLM stands for Constraint Local Models]
---
# Tracking a face
```js
function setup() {
// setup camera capture
var videoInput = createCapture(VIDEO);
videoInput.size(size, size);
videoInput.position(0, 0);
// setup canvas
var cnv = createCanvas(size, size);
cnv.position(0, 0);
// setup tracker
ctracker = new clm.tracker();
ctracker.init(pModel);
ctracker.start(videoInput.elt);
// define colors
noStroke();
fill('red')
}
```
---
# Tracking a face
```js
function draw() {
// clear the canvas
clear();
// get array of face marker positions [x, y] format
var positions = ctracker.getCurrentPosition();
for (var i=0; i < positions.length; i++) {
// set the color of the ellipse based on position on screen
circle(positions[i][0], positions[i][1], 5);
}
}
```
.footnote[Go directly to [the P5 Editor - demo1](https://editor.p5js.org/zscore/full/3abLY0OF)]
.footnote[or [try it yourself](https://shailendra.me/face-filters-demos/demo1)]
---
# How does it work?
```js
// get array of face marker positions [x, y] format
var positions = ctracker.getCurrentPosition();
```
![](assets/clmtrack.png)
---
# Recreating Classic Face Filters
### Ambika's Section 144
#### Yesterday's showcase
[link to tweet](https://twitter.com/ziscore/status/1224543093958963200)
How do we do it?
---
# Recreating Classic Face Filters
### Ambika's Section 144
Add a global variable
```js
var points_of_interest = [62];
```
Change what we do with array `positions`
```js
for (var i=0; i < positions.length; i++) {
// check if are we interest in this point
if(points_of_interest.includes(i)) {
// write a large emoji at this location
textSize(250);
textAlign(CENTER);
text('🤩', positions[i][0], positions[i][1]);
}
}
```
.footnote[Go directly to [the P5 Editor - demo2](https://editor.p5js.org/zscore/full/cOWdCGdd)]
.footnote[or [try it yourself](https://shailendra.me/face-filters-demos/demo2)]
---
# Recreating Classic Face Filters
### Dog Filter?????
![](assets/dog-filter.jpg)
---
# Dog Filter?????
### How do we make it?
Elements of the filter,
1. Puts dog ears on top of your face
2. Puts a dog nose
3. If you open your mouth, there's also a dog tongue!
---
# Dog Filter?????
### How do we make it?
```
> Implementation of this filter has been left as an exercise for the reader
```
---
# Dog Filter?????
## Resources
Adding an image,
```js
let dog_nose;
function preload() {
dog_nose = loadImage('path/to/an/image/from/the/internet.jpg');
}
function setup() {
// image(image_name, position_x, position_y)
image(dog_nose, 0, 0);
}
```
---
class: middle
# Spacer
[link](https://editor.p5js.org/zscore/present/Dru3FOH3)
---
# Eye Trails
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">My goal is to make ig regret giving me access to filters <a href="https://t.co/VROJwTSp7J">pic.twitter.com/VROJwTSp7J</a></p>— zach lieberman (@zachlieberman) <a href="https://twitter.com/zachlieberman/status/1129416333425336320?ref_src=twsrc%5Etfw">May 17, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
How do we do this?
---
# Eye Trails
How do we crop the canvas?
```js
var croppedCanvas = get(x, y, width, height);
```
---
# Eye Trails
Something like this?
```js
var left_eye = [27], right_eye = [32];
var lastFrameLeft, lastFrameRight;
```
```js
for (var i=0; i < positions.length; i++) {
// check if are we interest in this point
if(left_eye.includes(i)) {
lastFrameLeft = get(positions[i][0] - 10, positions[i][1] - 10, 20, 20);
image(lastFrameLeft, positions[i][0], positions[i][1]);
}
///
if(right_eye.includes(i)) {
lastFrameRight = get(positions[i][0] - 10, positions[i][1] - 10, 20, 20);
image(lastFrameRight, positions[i][0], positions[i][1]);
}
}
```
---
# Eye Trails
More trails!
```js
for (var i=0; i < positions.length; i++) {
// check if are we interest in this point
if(left_eye.includes(i)) {
lastFrameLeft = get(positions[i][0] - 10, positions[i][1] - 10, 20, 20);
image(lastFrameLeft, positions[i][0], positions[i][1]);
image(lastFrameLeft, positions[i][0] + 5, positions[i][1] + 5);
image(lastFrameLeft, positions[i][0] + 10, positions[i][1] + 10);
image(lastFrameLeft, positions[i][0] + 15, positions[i][1] + 15);
}
///
if(right_eye.includes(i)) {
lastFrameRight = get(positions[i][0] - 10, positions[i][1] - 10, 20, 20);
image(lastFrameRight, positions[i][0], positions[i][1]);
image(lastFrameRight, positions[i][0] + 5, positions[i][1] + 5);
image(lastFrameRight, positions[i][0] + 10, positions[i][1] + 10);
image(lastFrameRight, positions[i][0] + 15, positions[i][1] + 15);
}
}
```
.footnote[Go directly to [the P5 Editor - demo3](https://editor.p5js.org/zscore/full/vYbhbiZU)]
.footnote[or [try it yourself](https://shailendra.me/face-filters-demos/demo3)]
---
classes: middle
# Thanks!
---
# Resources
1. CLMTracker - [link to repo](https://github.com/auduno/clmtrackr)
2. Computer Vision Examples by Kyle McDonald- [link](https://kylemcdonald.github.io/cv-examples/)
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>
</body>
</html>