Coder Social home page Coder Social logo

ahmadfikrimasyhur / face-attendance-system Goto Github PK

View Code? Open in Web Editor NEW

This project forked from thuyngch/face-attendance-system

0.0 0.0 0.0 235.56 MB

An Attendance Checking System using Deep Facial Recognition, written in Python.

License: MIT License

Python 32.72% TeX 67.28%

face-attendance-system's Introduction

Face-Attendance-System

An Attendance Checking System using Deep Facial Recognition, written in Python.

Table of Content

Introduction

  • This is our final project in the course "Artificial Intelligence in Control Engineering" (August-December 2018), guided by Dr. Cuong Pham-Viet (Faculty of Electrical and Electronics Engineering, Ho Chi Minh city University of Technology, Vietnam).

  • We have developed an automatic Attendance Checking System that can be used in classes by teachers to check attendances of their students.

  • Face is used as clue for identifying who a person is.

  • An easy-to-use GUI is integrated so that users can use the system effortlessly without any specialized knowledge.

  • Underlying the GUI, Deep Facial Recognition techniques are exploited as the backbone of the system.

  • The system is deployed in standard portable laptops, which are commonly used by Vietnamese lecturers as well as students. Webcam integrated with laptops is to capture input images.

  • Technical details are reported in this paper.

Algorithm description

  • The whole system can be modeled as the figure below. There are four stages, namely blur detection, face detection, landmark detection, and face recognition. These four blocks are in the descending order of size in the direction from input to output. This points out that our system is tougher to input frames from the camera when such frames passed through the system. Therefore, best frames are likely to be processed, which may improve both the final recognition accuracy and processing time.

accessibility text

  • First, given an input frame from the webcam, the Blur Detection is responsible for removing blur frames due to motions of scanned people in front of the camera.

  • Second, the Face Detection is to localize region containing face in the image. Besides, our system only accepts frames that have one face. Therefore, frames with more than two faces are ignored, yet warnings are also notified.

  • Subsequently, frames are passed through the Lankmark Detection stage. In here, coordinates of salient points in a face (e.g., eye centers, nose, and mouth corners) are pointed out. The algorithm employs this information to check whether a person is in the frontal view of the camera. If not satisfy the condition, the frame is bypassed.

  • Finally, blur-clean, single-face, and frontal-view frames are processed in the Face Recognition stage to identify who a person is. Because during the training phase, we explored the outlier distribution of identities (registered people), then the system is able to recognize people that have not registered in the system before.

GUI description

  • The GUI (shown in the figure below) in Python is designed and programmed with the PyQT5 package.

accessibility text

  • The GUI can communicate to get frames from the webcam and call APIs of the algorithm to process these frames.

  • To boost the convenience of use, the GUI is facilitated with an Attendance Management module. More specifically, the GUI uses algorithm APIs to identify checked people and manages these results in an Excel file. Thus, the owner of the program just needs to open the Excel file after the checking procedure to see who attended class.

  • In addition, to make sure people joining the checking procedure stand in the best view to the camera, we continued introducing an Attention module, which informs (with voice) checkees whether they are in the accepted view of the system, so that they can change their position to match to requirements of the system.

Setup guidance

  • Install dependences:
sudo apt-get install -y python-pip python3-pip cmake
  • Create a folder containing virtual environments:
mkdir ~/.virtualenvs
cd ~/.virtualenvs
  • Install virtual-environment packages:
sudo /usr/local/bin/pip install virtualenv virtualenvwrapper
sudo /usr/local/bin/pip3 install virtualenv virtualenvwrapper
  • Using a text editor, open file "~/.bashrc", then add the following text into the end of the file, and save the file:
# virtualenv and virtualenvwrapper
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
source /usr/local/bin/virtualenvwrapper.sh
  • Create a virtual environment, named face_attendace:
source ~/.bashrc
/usr/local/bin/virtualenv -p /usr/bin/python3 face_attendace
workon face_attendace
  • Change to the directory containing your downloaded project, then install requirements:
cd <dir_to_project>
pip install -r requirements.txt
  • To run the program, run the python script:
python camera.py

Training guidance

  • To train a network appropriate with your own dataset, you need to collect data, using this file:
workon face_attendace
cd apis/code_train
python 1.collect_data.py
  • After collecting enough data (about 50 images per identity), use this file for cropping and aligning faces:
python 2.alignment.py
  • Then, split the whole data into three sets, namely training, validating, and testing:
python 3.data.py
  • Finally, train the network and set relevant threshold:
python 4.train.py

If you refer a step-by-step guidance, we are making a video doing this. Please check this issue#6.

Experimental results

  • From the collected data, we divide it into three datasets, including training, validating, and testing. Regarding the testing dataset, there are two subsets taken into account, namely known and unknown ones. The former is from our private data, while the latter is collected from the LFW dataset. By using only the former, we evaluate the model on a closed set (only containing registered identities), but by combining both two ones, we have an open set (containing not only registered identities but also unregistered identities).

accessibility text

  • Then, we conduct experiments to point out accuracies of the model on datasets.

accessibility text

Demo

Youtube link

Team members

face-attendance-system's People

Contributors

thuyngch avatar dotieuthien avatar tansyab1 avatar tanphunguyen avatar nvqui97 avatar phuonglvh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.