Skip to content

olafsulich/Face-Rocognize-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project title 🚀

App which recognize faces from picture.

Motivation 🎉

I wanted to discover and learn some API. I choose Face API

Screenshots 📺

Design

Tech/framework used 🔧

  • HTML5
  • SCSS
  • ES6+

Code Example/Issues 🔍

I used Face API documentation when I had some problems.

 const detections = await faceapi
      .detectAllFaces(image)
      .withFaceLandmarks()
      .withFaceDescriptors();
    const resizedDetections = faceapi.resizeResults(detections, displaySize);

Installation 📍

npm install 

Credits 👏

https://github.com/justadudewhohacks/face-api.js/helps me with many problems.