Multi-task Cascade Convolutional Neural Network in Face Detection
In this blog, i can tell you how to use convolutional neural network for face detection.
deep learning based model has achieved a state-of-the- art results in face detection better than opencv, cvlib or dlib as per my experience.
one of the example of deep learning based face detection model is MTCNN. An open source implementation link https://github.com/ipazc/mtcnn , you can go and research through it.
it can be installed easily using pip command.
pip install mtcnn
I tested on sample image https://machinelearningmastery.com/wp-content/uploads/2019/03/street.jpg
The code is taken from the open source github repository of mtcnn
Result of the face detection using mtcnn is awesome!!!!!
Have a try and Thanks for reading:)