human/demo/demo-esm-webworker.js

7 lines
168 B
JavaScript
Raw Normal View History

2020-10-14 02:52:30 +02:00
import human from '../dist/human.esm.js';
onmessage = async (msg) => {
const result = await human.detect(msg.data.image, msg.data.config);
postMessage(result);
};