Skip to content

Releases: Anurag14/accessfaceid

MVP v2.0.0

23 May 10:31
3f8f6c0
Compare
Choose a tag to compare

Details

-- Trimmed YOLO faced module for face detection
-- Insightface model is used for Face recognition
-- Totally metric learning based architecture ( will be improved upon using saimese networks)
-- Face alignment done using FAN

##How to run

pip install -r requirements.txt
$ cd faced
$ python setup.py install
$ cd ../pretrained
$ cp <download destination of insightface weights> .
$ cd ..
$ python encode/encode.py
$ python register/register.py 
$ python livestream/newmain.py

MVP v1.0.0

09 May 18:05
d2f6024
Compare
Choose a tag to compare

--Face Detection YOLO
--Face Alignment FAN
--Face Recognition VggFace
##How to run

$ cd accessfaceid-beta
$ pip install -r requirements.txt
$ cd faced
$ python setup.py install
$ cd ../training
$ mkdir weights
$ cd weights
$ cp <download destination of vggface weights> .
$ cd ../../
$ python encode.py
$ python main.py

MVP v0.0.0

27 Apr 15:22
7bcdfe8
Compare
Choose a tag to compare

-- main.py works using face_recognition and opencv
--primitive version lags in fps and compute heavy on CPU for real-time recognition and detection.
--face detection is done solely using face_recognition API
--encode.py works using face_recognition and opencv
--generates embedding of all the images in the system and then makes their encodings.