jitsi-meet/react/features/face-landmarks/faceLandmarksWorker.ts
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

27 lines
612 B
TypeScript

import { HumanHelper, IFaceLandmarksHelper } from './FaceLandmarksHelper';
import { DETECT_FACE, INIT_WORKER } from './constants';
let helper: IFaceLandmarksHelper;
onmessage = async function({ data }: MessageEvent<any>) {
switch (data.type) {
case DETECT_FACE: {
if (!helper || helper.getDetectionInProgress()) {
return;
}
const detections = await helper.detect(data);
if (detections) {
self.postMessage(detections);
}
break;
}
case INIT_WORKER: {
helper = new HumanHelper(data);
break;
}
}
};