-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (65 loc) · 2.39 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
<html>
<head>
<!-- Load TensorFlow.js -->
<!-- Load BodyPix -->
</head>
<body>
<video controls id="video" width="480" height="320" poster playsinline></video>
<canvas hidden id="canvas"></canvas>
<button id="blurButton" type="button" enabled>Blur Video</button>
<button id="regButton" type="button" disabled>Regular Video</button>
<script>
// HTMLMediaElement
const videoElement = document.getElementById('video');
const canvas = document.getElementById('canvas');
const blurVideoButton = document.getElementById('blurButton');
const regVideoButton = document.getElementById('regButton');
let enableBlurVideo = false;
blurVideoButton.addEventListener('click', e=> {
blurVideoButton.disabled = true;
regVideoButton.disabled = false;
enableBlurVideo = true;
videoElement.hidden = true;
canvas.hidden = false;
console.log(`blur video ${enableBlurVideo}`);
renderBlurVideo();
})
regVideoButton.addEventListener('click', e => {
regVideoButton.disabled = true;
blurVideoButton.disabled = false;
enableBlurVideo = false;
videoElement.hidden = false;
canvas.hidden = true;
console.log(`regular video ${enableBlurVideo}`);
})
navigator.mediaDevices.getUserMedia({ video: true, audio: false})
// stream - MediaStream
.then(async (stream) => {
videoElement.srcObject = stream;
await videoElement.play();
canvas.height = videoElement.videoHeight;
canvas.width = videoElement.videoWidth;
})
async function renderBlurVideo() {
const net = await bodyPix.load({
architecture: 'MobileNetV1',
outputStride: 16,
multiplier: 0.5,
quantBytes: 2
});
const backgroundBlurAmount = 2;
const edgeBlurAmount = 1;
const flipHorizontal = false;
while(enableBlurVideo) {
const segmentation = await net.segmentPerson(videoElement);
bodyPix.drawBokehEffect(
canvas, videoElement, segmentation, backgroundBlurAmount,
edgeBlurAmount, flipHorizontal
);
}
}
</script>
</body>
</html>