Skip to content

Help! Can I build my FYP using this ? #138

Answered by vladmandic
uzair004 asked this question in Q&A
Discussion options

You must be logged in to vote

There is no "training", you only need to run detection on each uploaded photo and store resulting face descriptor (which is an array of float numbers).

Assuming using NodeJS for backend implementation, backend would preload all required models and wait for request from frontend.
As user uploads the picture to frontend, it sends it to server which just runs face detection and extracts face descriptor.

Then you store the image and corresponding face descriptor somewhere on the server (as a file or in a DB) and also keep that face descriptor in an array (each new descriptor gets added to array).

Final step would to loop through the array and run face match between current descriptor and each…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@uzair004
Comment options

@vladmandic
Comment options

Answer selected by vladmandic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants