Projet de traitement d'image en javascript pour améliorer la reconnaissance faciale de Tracking.js/jsfeat.
Go to file
xdrm-brackets b29a91bb06 Merge branch 'dev' of https://git.xdrm.io/xdrm-brackets/face-recognition.js into dev 2016-11-16 04:54:48 -05:00
Feature_detection Correction [SobelFilter] + [CannyFilter] inspired by examples on `jsfeat` demo website 2016-11-03 15:01:51 +01:00
public_html Merge branch 'dev' of https://git.xdrm.io/xdrm-brackets/face-recognition.js into dev 2016-11-16 04:54:48 -05:00
.gitignore update gitignore file 2016-10-05 09:59:18 +02:00
.htaccess storage + .htaccess 2016-11-16 04:53:58 -05:00
LICENSE Initial commit 2016-10-05 01:59:06 -04:00
README.md Updating `timeline` [README.md] 2016-10-05 02:17:49 -04:00

README.md

Project Description

Javascript Canvas face recognition using back buffer for performance optimization.

Mixing convolution, substractive filter, this project tends to localise the components of the human face in the first hand, and in a second hand, to use ratios to identify faces.

The final aim is to be able to detect face components in real-time to control a program with your face only. Also, it must recognize components for whatever picture/video size, whatever fashion accessory weared.

Development timeline

I. Image optimization 1. Size adjustment 2. Contrast adjustment 3. Brightness adjustment 4. Edge detection II. Face extrusion 1. Set ratio parameters (human face ratios and constants) 2. Set face limits 3. Remove background III. Components recognition 1. Set ratio parameters (human face ratios and constants) 2. Set substractive filters (soft deep learning)