OCR Text recognition with Python and API (ocr.space)

In this article we’re going to learn how to recognize the text from a picture using Python and orc.space API. OCR (Optical character recognition) is the process by which the computer recognizes the text from an image. ocr.space is an OCR engine that offers free API.It means that is going to do pretty much all […]

Detect when an image is Blurry – Opencv with Python

We’re going to learn in this video how to detect when an Image is blurry using Opencv with Python. Let’s take two images a not blurry one and a blurry one: What is a blurry image? Taking a look at the two images above we can easily affirm that the second image is blurry while […]

Install Opencv 4.1 on Nvidia Jetson Nano

We’re going to learn in this tutorial how to install Opencv 4.1 on the Nvidia Jetson Nano. First of all we need to make sure that there is enough memory to proceed with the installation.The Jetson Nano has 4GB of ram, and they’re not enough for some installations, and Opencv is one of them. To […]

YOLO Real time detection on CPU

We’re going to learn in this tutorial how to detect objects in real time running YOLO on a CPU. If you’re a complete beginner about YOLO I highly suggest to check out my other tutorial about YOLO object detection on images, before proceding with realtime detection, as I’m going to use most of the same […]

YOLO object detection using Opencv with Python

We’re going to learn in this tutorial YOLO object detection. Yolo is a deep learning algorythm which came out on may 2016 and it became quickly so popular because it’s so fast compared with the previous deep learning algorythm. With yolo we can detect objects at a relatively high speed. With a GPU we would […]

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 do the coding. You can download the full source code […]

Swap faces – Face swapping Opencv with Python (part 5)

[emaillocker id=”26670″] Face swapping (part 5)Download[/emaillocker] 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 all the process from […]