mirror of https://github.com/vladmandic/human
7 lines
168 B
JavaScript
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);
|
||
|
};
|