Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/sidntrivedi012/amphion
- Owner: sidntrivedi012
- Created: 2019-11-06T19:43:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-14T07:14:13.000Z (about 5 years ago)
- Last Synced: 2024-04-18T11:06:06.219Z (7 months ago)
- Topics: face-detection, tensorflowjs
- Language: JavaScript
- Homepage:
- Size: 12.6 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
}]
```