Build your OBJECT DETECTION SOFTWARE – Crash course
After watching this crash course about Object Detection software you will be able to create object detection software that can be easily…
How to count people from CCTV cameras
We will see how to identify and count people from CCTV cameras with the highest accuracy possible. I will explain the main…
How to code an OpenCV project from a phone (with Google Colab)
In this tutorial, we will see how to make an entire OpenCV project from a phone project entirely from your phone. It…
AnimeGANv2 photo to a cartoon
In this tutorial, we will see how to use AnimeGANv2 to convert a cartoon image in just 4 steps. Before going on…
Kalman filter, predict the trajectory of an Object
In this tutorial, we will see a practical approach on how to use the Kalman filter to track and predict the trajectory…
Simple Color recognition with Opencv and Python
In this tutorial, we will learn how to use simple color recognition with the webcam. If you need more details on Opencv…
Object tracking from scratch – OpenCV and python
Object tracking, how to get started Before starting with Object Tracking and Object detection you must make sure that you have installed…
Object tracking using Homography – OpenCV 3.4 with python 3 Tutorial 34
We’re going to learn in this tutorial how to track an object using the Feature matching method, and then finding the Homography….
k-Nearest Neighbour classification – OpenCV 3.4 with python 3 Tutorial 33
Source code: [python] import cv2 import numpy as np def mouse_pos(event, x, y, flags, params): global squares, color, new_element if event ==…
Background Subtraction – OpenCV 3.4 with python 3 Tutorial 32
We’re going to learn in this tutorial how to subtract the background on a video. The concept of background subtraction is really…