Face Detection in Video

Learn how to detect faces using video in Python.

We'll cover the following...

Processing a video frame by frame

OpenCV grabs each frame from a live video via webcam. We’ll use the same processing techniques that we have for a single image. However, this time, we’ll do it frame by frame. This will require a lot of processing.

In the code ...