An open API service indexing awesome lists of open source software.

https://github.com/olafsulich/face-rocognize-app

An application that recognizes your face
https://github.com/olafsulich/face-rocognize-app

faceapi faceapp javascript javascript-applications javascript-library

Last synced: about 2 months ago
JSON representation

An application that recognizes your face

Awesome Lists containing this project

README

          

## Project title 🚀
App which recognize faces from picture.
## Motivation 🎉
I wanted to discover and learn some API. I choose [Face API](https://github.com/justadudewhohacks/face-api.js/)
## Screenshots 📺
![Design](https://i.ibb.co/P6nTkKw/ss.png)

## Tech/framework used 🔧
- HTML5
- SCSS
- ES6+

## Code Example/Issues 🔍

I used Face API documentation when I had some problems.

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

## Installation 📍
```bash
npm install
```

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