App which recognize faces from picture.
I wanted to discover and learn some API. I choose Face API
- HTML5
- SCSS
- ES6
I used Face API documentation when I had some problems.
const detections = await faceapi
.detectAllFaces(image)
.withFaceLandmarks()
.withFaceDescriptors();
const resizedDetections = faceapi.resizeResults(detections, displaySize);
npm install
https://github.com/justadudewhohacks/face-api.js/helps me with many problems.