human/demo/demo-esm-webworker.js

7 lines
168 B
JavaScript

import human from '../dist/human.esm.js';
onmessage = async (msg) => {
const result = await human.detect(msg.data.image, msg.data.config);
postMessage(result);
};