forked from webmachinelearning/webnn-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
287 lines (266 loc) · 9.84 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
'use strict';
import {TinyYoloV2Nchw} from './tiny_yolov2_nchw.js';
import {TinyYoloV2Nhwc} from './tiny_yolov2_nhwc.js';
import {SsdMobilenetV1Nchw} from './ssd_mobilenetv1_nchw.js';
import {SsdMobilenetV1Nhwc} from './ssd_mobilenetv1_nhwc.js';
import * as ui from '../common/ui.js';
import * as utils from '../common/utils.js';
import * as Yolo2Decoder from './libs/yolo2Decoder.js';
import * as SsdDecoder from '../common/libs/ssdDecoder.js';
const imgElement = document.getElementById('feedElement');
imgElement.src = './images/test.jpg';
const camElement = document.getElementById('feedMediaElement');
let modelName = '';
let layout = 'nhwc';
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 outputs;
let deviceType = '';
let lastdeviceType = '';
let backend = '';
let lastBackend = '';
const disabledSelectors = ['#tabs > li', '.btn'];
async function fetchLabels(url) {
const response = await fetch(url);
const data = await response.text();
return data.split('\n');
}
$(document).ready(async () => {
$('.icdisplay').hide();
if (await utils.isWebNN()) {
$('#webnn_cpu').click();
} else {
$('#polyfill_cpu').click();
}
});
$('#backendBtns .btn').on('change', async (e) => {
if (inputType === 'camera') utils.stopCameraStream(rafReq, stream);
await main();
});
$('#modelBtns .btn').on('change', async (e) => {
modelName = $(e.target).attr('id');
if (inputType === 'camera') utils.stopCameraStream(rafReq, stream);
await main();
});
$('#layoutBtns .btn').on('change', async (e) => {
layout = $(e.target).attr('id');
if (inputType === 'camera') utils.stopCameraStream(rafReq, stream);
await main();
});
// Click trigger to do inference with <img> element
$('#img').click(async () => {
if (inputType === 'camera') utils.stopCameraStream(rafReq, stream);
inputType = 'image';
$('.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 () => {
await main();
});
// Click trigger to do inference with <video> media element
$('#cam').click(async () => {
inputType = 'camera';
$('.shoulddisplay').hide();
await main();
});
/**
* This method is used to render live camera tab.
*/
async function renderCamStream() {
if (!stream.active) return;
// 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();
const results = await netInstance.compute(inputBuffer, outputs);
outputs = results.outputs;
computeTime = (performance.now() - start).toFixed(2);
console.log(` done in ${computeTime} ms.`);
showPerfResult();
await drawOutput(inputCanvas, outputs, labels);
$('#fps').text(`${(1000/computeTime).toFixed(0)} FPS`);
rafReq = requestAnimationFrame(renderCamStream);
}
async function drawOutput(inputElement, outputs, labels) {
const outputElement = document.getElementById('outputCanvas');
$('#inferenceresult').show();
// Draw output for SSD Mobilenet V1 model
if (modelName === 'ssdmobilenetv1') {
const anchors = SsdDecoder.generateAnchors({});
SsdDecoder.decodeOutputBoxTensor({}, outputs.boxes, anchors);
let [totalDetections, boxesList, scoresList, classesList] =
SsdDecoder.nonMaxSuppression({}, outputs.boxes, outputs.scores);
boxesList = SsdDecoder.cropSsdBox(
inputElement, totalDetections, boxesList, inputOptions.margin);
SsdDecoder.drawBoxes(
outputElement, totalDetections, inputElement,
boxesList, scoresList, classesList, labels);
} else {
// Draw output for Tiny Yolo V2 model
// Transpose 'nchw' output to 'nhwc' for postprocessing
let outputBuffer = outputs.output;
if (layout === 'nchw') {
outputBuffer = tf.tidy(() => {
const a =
tf.tensor(outputBuffer, netInstance.outputDimensions, 'float32');
const b = tf.transpose(a, [0, 2, 3, 1]);
return b.dataSync();
});
}
const decodeOut = Yolo2Decoder.decodeYOLOv2({numClasses: 20},
outputBuffer, inputOptions.anchors);
const boxes = Yolo2Decoder.getBoxes(decodeOut, inputOptions.margin);
Yolo2Decoder.drawBoxes(inputElement, outputElement, boxes, labels);
}
}
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 = {
'tinyyolov2nchw': new TinyYoloV2Nchw(),
'tinyyolov2nhwc': new TinyYoloV2Nhwc(),
'ssdmobilenetv1nchw': new SsdMobilenetV1Nchw(),
'ssdmobilenetv1nhwc': new SsdMobilenetV1Nhwc(),
};
return netObject[type];
}
async function main() {
try {
if (modelName === '') return;
[backend, deviceType] =
$('input[name="backend"]:checked').attr('id').split('_');
ui.handleClick(disabledSelectors, true);
if (isFirstTimeLoad) $('#hint').hide();
let start;
const [numRuns, powerPreference, numThreads] = utils.getUrlParams();
// Only do load() and build() when model first time loads,
// there's new model choosed, backend changed or device changed
if (isFirstTimeLoad || instanceType !== modelName + layout ||
lastdeviceType != deviceType || lastBackend != backend) {
if (lastdeviceType != deviceType || lastBackend != backend) {
// Set backend and device
await utils.setBackend(backend, deviceType);
lastdeviceType = lastdeviceType != deviceType ?
deviceType : lastdeviceType;
lastBackend = lastBackend != backend ? backend : lastBackend;
}
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);
if (modelName === 'tinyyolov2') {
outputs = {
'output': new Float32Array(
utils.sizeOfShape(netInstance.outputDimensions)),
};
} else {
outputs = {
'boxes': new Float32Array(utils.sizeOfShape([1, 1917, 1, 4])),
'scores': new Float32Array(utils.sizeOfShape([1, 1917, 91])),
};
}
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... ');
const contextOptions = {'devicePreference': deviceType};
if (powerPreference) {
contextOptions['powerPreference'] = powerPreference;
}
if (numThreads) {
contextOptions['numThreads'] = numThreads;
}
start = performance.now();
const outputOperand = await netInstance.load(contextOptions);
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();
await 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;
// Do warm up
let results = await netInstance.compute(inputBuffer, outputs);
for (let i = 0; i < numRuns; i++) {
start = performance.now();
results = await netInstance.compute(
results.inputs.input, results.outputs);
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`);
}
outputs = results.outputs;
console.log('output: ', outputs);
await ui.showProgressComponent('done', 'done', 'done');
$('#fps').hide();
ui.readyShowResultComponents();
await drawOutput(imgElement, outputs, labels);
showPerfResult(medianComputeTime);
} else if (inputType === 'camera') {
stream = await utils.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);
}