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
- Host: GitHub
- URL: https://github.com/olafsulich/face-rocognize-app
- Owner: olafsulich
- Created: 2019-10-27T23:45:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T01:28:03.000Z (over 6 years ago)
- Last Synced: 2025-08-14T08:52:39.969Z (10 months ago)
- Topics: faceapi, faceapp, javascript, javascript-applications, javascript-library
- Language: CSS
- Homepage:
- Size: 12.9 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 📺

## 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.