https://github.com/levikobi/face-recognizer
https://github.com/levikobi/face-recognizer
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/levikobi/face-recognizer
- Owner: levikobi
- Created: 2021-07-13T17:51:21.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-08T08:37:55.000Z (over 3 years ago)
- Last Synced: 2025-01-24T18:09:29.356Z (3 months ago)
- Language: Go
- Homepage:
- Size: 3.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# face-recognizer
This face recognition service get features (fixed size vector of 256) of a face which represent attruibtes of
the face.
The service returns as an output 3 (configurable number) best matches persons that simillar to this given
vector.
The face recognition is being done by comparing a single vector to all other exists vectors in the database
by dotproduct action.## Getting Started
### Installing
* Add the following line to your hosts file:
```
127.0.0.1 face-recognizer.dev
```
* cd into your projects folder
* git clone https://github.com/levikobi/face-recognizer.git### Executing program
* cd /face-recognizer
* run the following command in the terminal
```
$ skaffold dev
```
* in a second terminal run the client's script
```
$ ./client.py
```## Author
Kobi Levi
https://www.linkedin.com/in/levikobi/