- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can Deep Learning be used for facial recognition in Machine Learning?
Face recognition is the task of identifying and verifying people present in a photograph based on their face. This is a trivial task for humans, even if the lights are varying or when faces change due to age or they are obstructed with accessories, facial hair and so on.
But it remained a fairly challenging computer vision problem until a few years back. Deep learning methods have been able to leverage large datasets of faces and learn various representations of faces, thereby allowing modern learning models to perform well and better.
Facial recognition may be used to identify person in a photograph or in a video stream.
Facial recognition generally involves 4 steps −
- Face Detection
- Face Alignment
- Feature Extraction
- Face Recognition.
Face Detection
It refers to locating one or more faces present in the image. Once the images have been located, they are marked with a bounding box so that it is easy for the system to identify these faces.
Face Alignment
The face is normalized so that it is consistent with the data in the database, such as geometry and photometrics.
Feature Extraction
This step helps extract features from the face which can be used for the face recognition task.
Face Recognition
The final step, wherein the face matching of the person is performed against one or more known faces in a previously prepared database.
Note −The above mentioned four steps can all be done within a single module, or each of these tasks can be separated into different modules, and they can be used step by step.
The problem of face recognition can be considered as a supervised predictive modelling task which can be trained on samples that contains inputs and outputs.
Here, the input is a photo that contains at least one face, and the output is a most likely detected face.
The output of this task depends on the type of prediction required for the task −
It can be a binary class label or binary class probability if it is a face verification task.
It can be a similarity metric if it is a similarity type task.
It can be a categorical class label or set of probabilities if it is a face identification task.
- Related Articles
- How is machine learning used in regular life?
- What are layers in a Neural Network with respect to Deep Learning in Machine Learning?
- Difference between Deep Learning and Reinforcement Learning
- Benefits of learning machine learning from scratch
- What is Q-learning with respect to reinforcement learning in Machine Learning?
- TabNet in Machine Learning
- Machine Learning – The Intelligent Machine
- Top 10 Machine Learning Projects for Beginners
- Top 7 Machine Learning Projects For Beginners?
- Cross-Entropy Cost Functions used in Classification in Machine Learning
- How can Tensorflow Hub be used to fine-tune learning models?
- What is Machine Learning?
- What are the different learning styles in machine learning algorithms?
- Robust Correlation in Machine Learning
- Scaling Techniques in Machine Learning
