mirror of https://github.com/vladmandic/human
add node-match advanced example using worker thread pool
parent
89065def60
commit
e3e6effa32
9
Demos.md
9
Demos.md
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue