Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romanthekat/face-recognition-backend
Backend for a small Face Recognition project
https://github.com/romanthekat/face-recognition-backend
backend docker docker-compose go golang
Last synced: 14 days ago
JSON representation
Backend for a small Face Recognition project
- Host: GitHub
- URL: https://github.com/romanthekat/face-recognition-backend
- Owner: romanthekat
- License: apache-2.0
- Created: 2019-05-08T07:19:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-23T20:38:04.000Z (over 1 year ago)
- Last Synced: 2023-08-16T22:26:02.778Z (about 1 year ago)
- Topics: backend, docker, docker-compose, go, golang
- Language: Go
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= FaceRecognitionBackend
Backend for a small 'Face Recognition project'.
Basically it keeps information about 'users'
and integrates with another python service with https://github.com/davidsandberg/facenet[facenet].Python service provides encoding information by photo.
This backend service registers users,
uses facenet model for calculating encodings,
keeps these encodings,
and provides an ability to compare them - to find user by photo taken in mobile app.Implementation relies on stdlib for the most of the things (except for mongodb driver).
== Testing
`go test ./\...`