Coder Social home page Coder Social logo

Comments (1)

justadudewhohacks avatar justadudewhohacks commented on May 14, 2024 1

Hi,

There are no trained models saved for the face recognition part. Basically, in the face recognition examples is an example image loaded for each character and the face descriptor is computed and stored in an array (reference descriptors). Note, that the images loaded here are already aligned face images, thus you can pass them straight into the FaceRecognitionNet.

Now, in the example detectAndRecognizeFaces, once you select an input image, all faces are detected in that image and their face descriptors are computed. What we do now is to match these face descriptors (query descriptors) to the reference descriptors, by computing the euclidean distance between two descriptors and simply find the one with the lowest distance, to identify the person with the help of the reference data.

I would recommend you to also read my introduction, where we actually do the same thing: https://itnext.io/face-api-js-javascript-api-for-face-recognition-in-the-browser-with-tensorflow-js-bcc2a6c4cf07.

One thing that might be confusing in the example is, that you can have multiple images / descriptors for each class in your reference data instead of only 1 descriptor, which should make it more robust. Now, whats done in getBestMatch, is to compute the distance of the query descriptor to all reference descriptors for a class and simply return the mean value of the distances.

Hope that clarifies it.

from face-api.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.