Face Detection Using Python & Open CV

randerson112358
4 min readJul 8, 2019

In this article I will show you how to create your very own image face detection program using the python programming language, and Open CV with pretrained classifiers. We will detect both the faces and eyes within an image.

Face detection is performed by using classifiers. A classifier is essentially an algorithm that decides whether a given image is positive(face) or negative(not a face). We will…

--

--