add node-match advanced example using worker thread pool

master
Vladimir Mandic 2021-10-13 08:01:44 -04:00
parent 89065def60
commit e3e6effa32
1 changed files with 7 additions and 2 deletions

@ -10,6 +10,9 @@ Demos are included in `/demo`:
Simple demo that analzyes either WebCam or WebRTC input
- `facematch`: [browser]
Extracts faces from images, calculates face descriptors calculates simmilarities
- `multithread`: [browser]
Runs each `human` module in a separate web worker for highest possible performance
See <https://github.com/vladmandic/human/demo/facematch/node-match.md> for details
- `face3d`: [browser]
Uses WebCam as input and draws 3D render of face mesh using `Three.js`
@ -17,10 +20,12 @@ Demos are included in `/demo`:
- `nodejs/node`: [nodejs]
Process images from files, folders or URLs
- `nodejs/node-canvas`: [nodejs]
- `nodejs/node-canvas`: [nodejs]
Process image from file or URL and draw results to a new image file using `node-canvas`
- `nodejs/node-multiprocess` & `nodejs/node-multiprocess-worker`: [nodejs]
Parallel processing in multiple child worker processes
Parallel processing in `human` **detect** in multiple child worker processes
- `facematch/node-match` & `facematch/node-match-worker`: [nodejs]
Parallel processing of face **match** in multiple child worker threads
- `nodejs/node-video`: [nodejs]
Processing of video input using `ffmpeg`
- `nodejs/node-webcam`: [nodejs]