Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/natsu90/whoiscomingto.party
Simple Face Recognition Attendance System
https://github.com/natsu90/whoiscomingto.party
attendance-system face-recognition
Last synced: 3 days ago
JSON representation
Simple Face Recognition Attendance System
- Host: GitHub
- URL: https://github.com/natsu90/whoiscomingto.party
- Owner: natsu90
- Created: 2019-11-22T10:23:18.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T12:12:07.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T22:45:49.853Z (3 months ago)
- Topics: attendance-system, face-recognition
- Language: JavaScript
- Homepage: https://whoiscomingto.party
- Size: 539 KB
- Stars: 114
- Watchers: 3
- Forks: 40
- Open Issues: 8
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## WhoIsComingTo.Party
[![Featured on Hacker News](https://hackerbadge.now.sh/api?id=22574657)](https://news.ycombinator.com/item?id=22574657)
### Demo
https://whoiscomingto.party
### Installation
`cd functions && npm i && npm run setup`
`firebase deploy`
### About
With all the craze about Machine Learning nowadays, I wish to try my hands on this technology especially Face Recognition. But unfortunately if you are just a humble software developer it will be a long journey. But luckily when I'm scrolling around in Github, I found this awesome library which is called [face-api.js](https://github.com/justadudewhohacks/face-api.js).
### FAQ
1. What are the necessary files needed to use the library?
- You need the Tensorflow saved models. Luckily for you these are already saved in the library repo in `weights` folder so you can just copy from it.2. What kind of data that I will store in database?
- It is called `descriptor`. The data is in array of 128 float numbers e.g `[-0.029340924695134163, -0.13368940353393555, 0.1174287348985672, ... (total 128) ]`. One people can have many `descriptor` to make the recognition more accurate. So when you are retrieving the data from your database, you might want to output into following JSON format;
```
[
{
label: 'person 1',
descriptors: [descriptor1array]
},
{
label: 'another person',
descriptors: [descriptor2array, descriptor3array]
}
]
```3. Do I really need to make some face expressions in the data training to make the recognition more accurate?
- No, I just having fun since the face expression recognition function is available. Plus it also work like some kind of authorisation since anyone can take your picture, but no one can make you making those face expressions. Unless you are a famous person and your picture in different expression is everywhere online.### License
Licensed under the [MIT license](http://opensource.org/licenses/MIT)