Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sidntrivedi012/amphion

A simple face extraction module built on tensorflow.js.
https://github.com/sidntrivedi012/amphion

face-detection tensorflowjs

Last synced: 6 days ago
JSON representation

A simple face extraction module built on tensorflow.js.

Awesome Lists containing this project

README

        

# amphion

> A WIP simple face extraction module built on tensorflow.js.

## Usage

1. Clone the repository and install the dependencies.
2. Run `http-server` and open the link of the hosted server.
3. Upload the image and the module returns the faces in the image as independent Canvas elements alongwith the following params:
```json
[{
"face0": {
"image_base64": "the base64 encoded string of the image",
"age": 12,
"emotion": "Happy",
"gender": "Male"
},
"face1": {
"image_base64": "the base64 encoded string of the image",
"age": 11,
"emotion": "Surprised",
"gender": "Female"
}
}]
```