Reader small image

You're reading from  Computer Vision for the Web

Product typeBook
Published inOct 2015
Reading LevelIntermediate
PublisherPackt
ISBN-139781785886171
Edition1st Edition
Languages
Right arrow
Author (1)
Foat Akhmadeev
Foat Akhmadeev
author image
Foat Akhmadeev

Foat Akhmadeev has 5 years of experience in software development and research. He completed his master's degree in the year 2014 from the Kazan Federal University, Russia. He has worked on different projects, including development of high-loaded websites written in Java and real-time object detection for mobile phones. He has an extensive background in the field of Computer Vision. He has also written a scientific paper on 3D reconstruction from a single image. For more information, you can visit his website at http://foat.me.
Read more about Foat Akhmadeev

Right arrow

Face detection with JSFeat


We saw detection of various objects in the previous chapter. The human face is much more complicated than just a regular color object, for example. More complex detectors share in common such things like the usage of brightness information and the patterns that this information forms. First of all, we need to see how face recognition is done. Without that, the tracking process will be quite difficult to understand. Actually, in most cases, the face recognition part is just the first step of face tracking algorithms.

We start with the JSFeat project. This awesome library provides a functionality to detect a face in two ways. Both have many applications in the real world. We will see how both of them work from the inside and discuss the API provided by JSFeat.

Face detection using Haar-like features

This is probably the most popular face detector nowadays. Most of the libraries use exactly this algorithm as a common face detector. It is easy to implement and use. In...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Computer Vision for the Web
Published in: Oct 2015Publisher: PacktISBN-13: 9781785886171

Author (1)

author image
Foat Akhmadeev

Foat Akhmadeev has 5 years of experience in software development and research. He completed his master's degree in the year 2014 from the Kazan Federal University, Russia. He has worked on different projects, including development of high-loaded websites written in Java and real-time object detection for mobile phones. He has an extensive background in the field of Computer Vision. He has also written a scientific paper on 3D reconstruction from a single image. For more information, you can visit his website at http://foat.me.
Read more about Foat Akhmadeev