mirror of https://github.com/vladmandic/human
add node-match advanced example using worker thread pool
parent
89065def60
commit
e3e6effa32
7
Demos.md
7
Demos.md
|
@ -10,6 +10,9 @@ Demos are included in `/demo`:
|
||||||
Simple demo that analzyes either WebCam or WebRTC input
|
Simple demo that analzyes either WebCam or WebRTC input
|
||||||
- `facematch`: [browser]
|
- `facematch`: [browser]
|
||||||
Extracts faces from images, calculates face descriptors calculates simmilarities
|
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]
|
- `face3d`: [browser]
|
||||||
Uses WebCam as input and draws 3D render of face mesh using `Three.js`
|
Uses WebCam as input and draws 3D render of face mesh using `Three.js`
|
||||||
|
|
||||||
|
@ -20,7 +23,9 @@ Demos are included in `/demo`:
|
||||||
- `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`
|
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]
|
- `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]
|
- `nodejs/node-video`: [nodejs]
|
||||||
Processing of video input using `ffmpeg`
|
Processing of video input using `ffmpeg`
|
||||||
- `nodejs/node-webcam`: [nodejs]
|
- `nodejs/node-webcam`: [nodejs]
|
||||||
|
|
Loading…
Reference in New Issue