-
Notifications
You must be signed in to change notification settings - Fork 32
/
main.js
392 lines (350 loc) · 12.4 KB
/
main.js
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
'use strict';
import {DeepLabV3MNV2Nchw} from './deeplabv3_mnv2_nchw.js';
import {DeepLabV3MNV2Nhwc} from './deeplabv3_mnv2_nhwc.js';
import * as ui from '../common/ui.js';
import * as utils from '../common/utils.js';
import {Renderer} from './lib/renderer.js';
const imgElement = document.getElementById('feedElement');
imgElement.src = './images/test.jpg';
const camElement = document.getElementById('feedMediaElement');
const outputCanvas = document.getElementById('outputCanvas');
let modelName ='deeplabv3mnv2';
let layout = 'nchw';
let instanceType = modelName + layout;
let rafReq;
let isFirstTimeLoad = true;
let inputType = 'image';
let netInstance = null;
let labels = null;
let stream = null;
let loadTime = 0;
let buildTime = 0;
let computeTime = 0;
let inputOptions;
let outputBuffer;
let renderer;
let hoverPos = null;
let devicePreference = 'gpu';
let lastDevicePreference = '';
const disabledSelectors = ['#tabs > li', '.btn'];
$(document).ready(() => {
$('.icdisplay').hide();
});
$(window).on('load', () => {
renderer = new Renderer(outputCanvas);
renderer.setup();
loadRenderUI();
});
$('#deviceBtns .btn').on('change', async (e) => {
devicePreference = $(e.target).attr('id');
if (inputType === 'camera') cancelAnimationFrame(rafReq);
await main();
});
$('#modelBtns .btn').on('change', async (e) => {
modelName = $(e.target).attr('id');
if (inputType === 'camera') cancelAnimationFrame(rafReq);
await main();
});
$('#layoutBtns .btn').on('change', async (e) => {
layout = $(e.target).attr('id');
if (inputType === 'camera') cancelAnimationFrame(rafReq);
await main();
});
// Click trigger to do inference with <img> element
$('#img').click(async () => {
if (inputType === 'camera') cancelAnimationFrame(rafReq);
if (stream !== null) stopCamera();
inputType = 'image';
$('#pickimage').show();
$('.shoulddisplay').hide();
await main();
});
$('#imageFile').change((e) => {
const files = e.target.files;
if (files.length > 0) {
$('#feedElement').removeAttr('height');
$('#feedElement').removeAttr('width');
imgElement.src = URL.createObjectURL(files[0]);
}
});
$('#feedElement').on('load', async () => {
if (!isFirstTimeLoad) {
await main();
}
});
// Click trigger to do inference with <video> media element
$('#cam').click(async () => {
inputType = 'camera';
$('#pickimage').hide();
$('.shoulddisplay').hide();
await main();
});
function loadRenderUI() {
const blurSlider = document.getElementById('blurSlider');
const refineEdgeSlider = document.getElementById('refineEdgeSlider');
const colorMapAlphaSlider = document.getElementById('colorMapAlphaSlider');
const selectBackgroundButton = document.getElementById('chooseBackground');
const clearBackgroundButton = document.getElementById('clearBackground');
const colorPicker = new iro.ColorPicker('#color-picker-container', {
width: 200,
height: 200,
color: {
r: renderer.bgColor[0],
g: renderer.bgColor[1],
b: renderer.bgColor[2],
},
markerRadius: 5,
sliderMargin: 12,
sliderHeight: 20,
});
$('.bg-value').html(colorPicker.color.hexString);
colorPicker.on('color:change', (color) => {
$('.bg-value').html(color.hexString);
renderer.bgColor = [color.rgb.r, color.rgb.g, color.rgb.b];
});
colorMapAlphaSlider.value = renderer.colorMapAlpha * 100;
$('.color-map-alpha-value').html(renderer.colorMapAlpha);
colorMapAlphaSlider.oninput = () => {
const alpha = colorMapAlphaSlider.value / 100;
$('.color-map-alpha-value').html(alpha);
renderer.colorMapAlpha = alpha;
};
blurSlider.value = renderer.blurRadius;
$('.blur-radius-value').html(renderer.blurRadius + 'px');
blurSlider.oninput = () => {
const blurRadius = parseInt(blurSlider.value);
$('.blur-radius-value').html(blurRadius + 'px');
renderer.blurRadius = blurRadius;
};
refineEdgeSlider.value = renderer.refineEdgeRadius;
if (refineEdgeSlider.value === '0') {
$('.refine-edge-value').html('DISABLED');
} else {
$('.refine-edge-value').html(refineEdgeSlider.value + 'px');
}
refineEdgeSlider.oninput = () => {
const refineEdgeRadius = parseInt(refineEdgeSlider.value);
if (refineEdgeRadius === 0) {
$('.refine-edge-value').html('DISABLED');
} else {
$('.refine-edge-value').html(refineEdgeRadius + 'px');
}
renderer.refineEdgeRadius = refineEdgeRadius;
};
$('.effects-select .btn input').filter((e) => {
return e.value === renderer.effect;
}).parent().toggleClass('active');
$('.controls').attr('data-select', renderer.effect);
$('.effects-select .btn').click((e) => {
e.preventDefault();
const effect = e.target.children[0].value;
$('.controls').attr('data-select', effect);
renderer.effect = effect;
});
selectBackgroundButton.addEventListener('change', (e) => {
const files = e.target.files;
if (files.length > 0) {
const img = new Image();
img.onload = () => {
renderer.backgroundImageSource = img;
};
img.src = URL.createObjectURL(files[0]);
}
}, false);
clearBackgroundButton.addEventListener('click', (e) => {
renderer.backgroundImageSource = null;
}, false);
outputCanvas.addEventListener('mousemove', (e) => {
const getMousePos = (canvas, evt) => {
const rect = canvas.getBoundingClientRect();
return {
x: Math.ceil(evt.clientX - rect.left),
y: Math.ceil(evt.clientY - rect.top),
};
};
hoverPos = getMousePos(outputCanvas, e);
renderer.highlightHoverLabel(hoverPos, outputCanvas);
});
outputCanvas.addEventListener('mouseleave', (e) => {
hoverPos = null;
renderer.highlightHoverLabel(hoverPos, outputCanvas);
});
}
async function fetchLabels(url) {
const response = await fetch(url);
const data = await response.text();
return data.split('\n');
}
async function getMediaStream() {
// Support 'user' facing mode at present
const constraints = {audio: false, video: {facingMode: 'user'}};
stream = await navigator.mediaDevices.getUserMedia(constraints);
}
function stopCamera() {
stream.getTracks().forEach((track) => {
if (track.readyState === 'live' && track.kind === 'video') {
track.stop();
}
});
}
/**
* This method is used to render live camera tab.
*/
async function renderCamStream() {
// If the video element's readyState is 0, the video's width and height are 0.
// So check the readState here to make sure it is greater than 0.
if (camElement.readyState === 0) {
rafReq = requestAnimationFrame(renderCamStream);
return;
}
const inputBuffer = utils.getInputTensor(camElement, inputOptions);
const inputCanvas = utils.getVideoFrame(camElement);
console.log('- Computing... ');
const start = performance.now();
netInstance.compute(inputBuffer, outputBuffer);
computeTime = (performance.now() - start).toFixed(2);
console.log(` done in ${computeTime} ms.`);
showPerfResult();
await drawOutput(inputCanvas);
$('#fps').text(`${(1000/computeTime).toFixed(0)} FPS`);
rafReq = requestAnimationFrame(renderCamStream);
}
async function drawOutput(srcElement) {
// TODO: move 'argMax' operation to graph once it is supported in WebNN spec.
// https://github.com/webmachinelearning/webnn/issues/184
const [argMaxBuffer, outputShape] = tf.tidy(() => {
const a = tf.tensor(outputBuffer, netInstance.outputDimensions, 'float32');
let axis = 3;
if (layout === 'nchw') {
axis = 1;
}
const b = tf.argMax(a, axis);
return [b.dataSync(), b.shape];
});
const width = inputOptions.inputDimensions[2];
const imWidth = srcElement.naturalWidth | srcElement.width;
const imHeight = srcElement.naturalHeight | srcElement.height;
const resizeRatio = Math.max(Math.max(imWidth, imHeight) / width, 1);
const scaledWidth = Math.floor(imWidth / resizeRatio);
const scaledHeight = Math.floor(imHeight / resizeRatio);
const segMap = {
data: argMaxBuffer,
outputShape: outputShape,
labels: labels,
};
renderer.uploadNewTexture(srcElement, [scaledWidth, scaledHeight]);
renderer.drawOutputs(segMap);
renderer.highlightHoverLabel(hoverPos, outputCanvas);
}
function showPerfResult(medianComputeTime = undefined) {
$('#loadTime').html(`${loadTime} ms`);
$('#buildTime').html(`${buildTime} ms`);
if (medianComputeTime !== undefined) {
$('#computeLabel').html('Median inference time:');
$('#computeTime').html(`${medianComputeTime} ms`);
} else {
$('#computeLabel').html('Inference time:');
$('#computeTime').html(`${computeTime} ms`);
}
}
function constructNetObject(type) {
const netObject = {
'deeplabv3mnv2nchw': new DeepLabV3MNV2Nchw(),
'deeplabv3mnv2nhwc': new DeepLabV3MNV2Nhwc(),
};
return netObject[type];
}
export async function main() {
try {
ui.handleClick(disabledSelectors, true);
let start;
// Set 'numRuns' param to run inference multiple times
const params = new URLSearchParams(location.search);
let numRuns = params.get('numRuns');
numRuns = numRuns === null ? 1 : parseInt(numRuns);
if (numRuns < 1) {
ui.addAlert('The value of param numRuns must be greater than or equal' +
' to 1.');
return;
}
// Only do load() and build() when model first time loads,
// there's new model choosed, and device backend changed
if (isFirstTimeLoad || instanceType !== modelName + layout ||
lastDevicePreference != devicePreference) {
if (lastDevicePreference != devicePreference) {
// Set polyfill backend
await utils.setPolyfillBackend(devicePreference);
lastDevicePreference = devicePreference;
}
if (netInstance !== null) {
// Call dispose() to and avoid memory leak
netInstance.dispose();
}
instanceType = modelName + layout;
netInstance = constructNetObject(instanceType);
inputOptions = netInstance.inputOptions;
labels = await fetchLabels(inputOptions.labelUrl);
outputBuffer =
new Float32Array(utils.sizeOfShape(netInstance.outputDimensions));
isFirstTimeLoad = false;
console.log(`- Model name: ${modelName}, Model layout: ${layout} -`);
// UI shows model loading progress
await ui.showProgressComponent('current', 'pending', 'pending');
console.log('- Loading weights... ');
start = performance.now();
const outputOperand = await netInstance.load(devicePreference);
loadTime = (performance.now() - start).toFixed(2);
console.log(` done in ${loadTime} ms.`);
// UI shows model building progress
await ui.showProgressComponent('done', 'current', 'pending');
console.log('- Building... ');
start = performance.now();
netInstance.build(outputOperand);
buildTime = (performance.now() - start).toFixed(2);
console.log(` done in ${buildTime} ms.`);
}
// UI shows inferencing progress
await ui.showProgressComponent('done', 'done', 'current');
if (inputType === 'image') {
const inputBuffer = utils.getInputTensor(imgElement, inputOptions);
console.log('- Computing... ');
const computeTimeArray = [];
let medianComputeTime;
if (numRuns > 1) {
// Do warm up
netInstance.compute(inputBuffer, outputBuffer);
}
for (let i = 0; i < numRuns; i++) {
start = performance.now();
netInstance.compute(inputBuffer, outputBuffer);
computeTime = (performance.now() - start).toFixed(2);
console.log(` compute time ${i+1}: ${computeTime} ms`);
computeTimeArray.push(Number(computeTime));
}
if (numRuns > 1) {
medianComputeTime = utils.getMedianValue(computeTimeArray);
medianComputeTime = medianComputeTime.toFixed(2);
console.log(` median compute time: ${medianComputeTime} ms`);
}
console.log('output: ', outputBuffer);
await ui.showProgressComponent('done', 'done', 'done');
$('#fps').hide();
ui.readyShowResultComponents();
await drawOutput(imgElement);
showPerfResult(medianComputeTime);
} else if (inputType === 'camera') {
await getMediaStream();
camElement.srcObject = stream;
camElement.onloadeddata = await renderCamStream();
await ui.showProgressComponent('done', 'done', 'done');
$('#fps').show();
ui.readyShowResultComponents();
} else {
throw Error(`Unknown inputType ${inputType}`);
}
} catch (error) {
console.log(error);
ui.addAlert(error.message);
}
ui.handleClick(disabledSelectors, false);
}