Control webcam with servo motor and raspberry pi – Opencv with Python
We will learn in this tutorial how to control the webcam using a servo motor and the raspberry pi. Our goal is to follow an object with the webcam which is moved by the servo motor like in the image below. In this tutorial I…
Face swapping (explained in 8 steps) – Opencv with Python
In this article I’m going to explain how to do face swapping using Opencv with Python in 8 simple steps. This is a quick explanation of each step, but I’ve also done for each of them an entire full tutorial where I show how to…
Swap faces – Face swapping Opencv with Python (part 5)
We’re going to see in this video the “core” of face swapping, where we finally swap both faces and we can see the first interesting results. We will focuso on this tutorial on the explanation of only the swapping part, if you want to understand…
Select and Warp triangles – Face swapping Opencv with Python (part 4)
We’re going to see in this video how to select the corresponding triangles and warp them so that the triangles of the first image match exactly the triangles in the second image in shape and size. We keep the first part unchanged from the last…
Matching the two faces triangulation – Face swapping Opencv with Python (part 3)
We are going to see in this third part of the tutorial how to find the triangulation of the second face and how to match each triangle of the first face with the ones in the second face. We will focus on this part on…
Delaunay Triangulation for Face swapping – Opencv with Python (part 2)
We’re going to see in this tutorial how to split the face into triangles using Delaunay Triangulation. Why are we splitting the face into triangles?For face swapping this is the best approach to use, we split both the faces into triangles and then we swap…
Face swapping – Opencv with Python (part 1)
We’re going to learn in this new tutorial series how to create the snapchat filter “Face swap”. In this first tutorial wi will learn how to: Get the external boundaries of the face Extract the face from the image Here below you will find the…
Pig’s nose (Instagram face filter) – Opencv with Python
We’re going to see in this video how to create Instagram Face Filters using Opencv with Python. Import the libaries and load the detectors (for face and face landmark points). We then run the while loop to get the frames in real time from the…
How to install Dlib for Python 3 on Windows
In this video we will see how to install the Dlib library for Python 3 on Windows. In this specific tutorial we are going to install Dlib 19.8 for Python 3.6 (64 bit version). We choosed this specific version as it’s the latest one (March…
How to install Python 3 and Opencv 4 on Windows
We’re going to see in this tutorial how to install Python 3 and Opencv 4 on Windows. Here below you see a list of the steps necessary for a complete installation. If you have any problem following the steps, I suggest you to watch the…