项目作者: 1297rohit

项目描述 :
Face Recognition Library
高级语言: Python
项目地址: git://github.com/1297rohit/FaceReco.git
创建时间: 2020-02-12T07:27:33Z
项目社区:https://github.com/1297rohit/FaceReco

开源协议:MIT License

下载


FaceReco

Face Recognition Library using Class based structure

PyPI

Installing

pip install FaceReco

Description

Face Recognition is a very popular topic. It has lot of use cases in the filed of biometric security.
Now a days with the help of Deep learning face recognition has become very feasible to people.
As deep learning is a very data intensive task and we may always not have such huge amount of data to work in case of face recognition
so with the advancement in One Shot Learning, face recognition has become more practical and feasible. This Python Package make it even more feasible, simple
and easy to use. We have eliminated all the steps to download the supporting files and setting up the supporting files. You can simply installed the python package and start doing face detection and recognition.

Steps Explanation

To learn more about the tasks which are being performed on the backend head over to link : Step by Step Face Recognition Code Implementation From Scratch In Python

Using The Package

Train Model

  1. import FaceReco.FaceReco as fr
  2. fr_object1 = fr.FaceReco()
  3. fr_object1.train_model("lfw_selected/face")

Test Model

  1. fr_object1.test_model("lfw_selected/face2/Johnny_Depp_0002.jpg")

Load Saved Model

  1. fr_object2 = fr.FaceReco()
  2. fr_object2.load_model("Model_Object_1") #folder of saved model
  3. fr_object2.test_model("lfw_selected/face2/Johnny_Depp_0002.jpg")