justadudewhohacks / face-api.js

JavaScript API for face detection and face recognition in the browser and nodejs with tensorflow.js
MIT License
16.67k stars 3.71k forks source link

[QUESTION]: Login form HTML #520

Open MESWEB opened 4 years ago

MESWEB commented 4 years ago

It's possible to make a login form using face detection?

abdulazizsapra commented 4 years ago

yes possible. I've working on a asp.net project in which i used login with face id.

MESWEB commented 4 years ago

@abdulazizsapra Any tutorial?

timsun28 commented 4 years ago

In case you want to create a basic implementation for a web app that uses face recognition follow this tutorial: https://youtu.be/AZ4PdALMqx0 (also linked on this repo) and start by creating a classifier that is able to recognize your face.

Once you figured that out use a webcam as input instead of an image that you uploaded and link the result from the recognition to your existing login system for your app.

Good luck!