This website is made possible by displaying online advertisements to our visitors.
Please consider supporting us by disabling your ad blocker. Thank you for your support.
Image Thresholding with OpenCV and Python

Image Thresholding with OpenCV and Python

Oct. 24 2022 Yacine Rouizi
OpenCV Image Processing Computer Vision

Image thresholding is one of the most basic types of image segmentation. It consists of converting an image (a grayscale image) into a binary image (black and white image). In simple thresholding, we manually set a threshold value T and compare ...


Read more ...
Face Recognition with Python, Dlib, and Deep Learning

Face Recognition with Python, Dlib, and Deep Learning

Oct. 10 2022 Yacine Rouizi
OpenCV Computer Vision Deep Learning Face Detection Dlib Face Recognition

In this tutorial, we will see how to perform face recognition using the Dlib library and deep learning. The OpenCV library will be used for performing some simple image processing tasks such as converting the image to grayscale, resizing it, and so on.


Read more ...
Object Detection with Python, Deep Learning, and OpenCV

Object Detection with Python, Deep Learning, and OpenCV

Sept. 26 2022 Yacine Rouizi
Image Processing Computer Vision Deep Learning Object Detection

In this tutorial, we will see how to detect objects using deep learning and OpenCV.  Object detection is the process of locating objects with bounding boxes in an image or a video. It is one of the most important tasks in computer vision, and it ...


Read more ...
YOLOv4 Custom Object Detection with OpenCV and Python

YOLOv4 Custom Object Detection with OpenCV and Python

Sept. 21 2022 Yacine Rouizi
OpenCV Image Processing Computer Vision Object Detection YOLO

In this tutorial, I will show you how to train a YOLOv4 object detector on a custom dataset using OpenCV and Python. Once our model is trained, we will be able to use it to detect the objects of interest in new images. We will do this by exporting ...


Read more ...
Image Filtering and Blurring with OpenCV and Python

Image Filtering and Blurring with OpenCV and Python

Sept. 12 2022 Yacine Rouizi
OpenCV Image Processing Computer Vision

Image blurring is an important preprocessing step in computer vision. It is used to reduce noise and unnecessary detail in an image.


Read more ...
Face Detection and Blurring with OpenCV and Python

Face Detection and Blurring with OpenCV and Python

Sept. 7 2022 Yacine Rouizi
OpenCV Image Processing Computer Vision Face Detection

In this tutorial, we are going to see how to detect faces with OpenCV and Haar cascade then we will use image blurring to only blur the part of the face on the image. Face detection is a computer vision technology that consists of detecting ...


Read more ...
Morphological Operations with OpenCV and Python

Morphological Operations with OpenCV and Python

Aug. 17 2022 Yacine Rouizi
OpenCV Image Processing Computer Vision

Morphological operations are some transformations applied to grayscale or binary images. Morphological operations apply a structuring element to add or remove some pixels from the boundaries of objects in an input image.


Read more ...
Eye Blink Counter with Dlib, Python, and OpenCV

Eye Blink Counter with Dlib, Python, and OpenCV

Aug. 2 2022 Yacine Rouizi
Image Processing Computer Vision Face Detection Dlib

In this tutorial, we will see how to create a blink detector/counter using Dlib, Python, and OpenCV. We will first use the face detector from Dlib to detect faces in a video. Then we will use the shape predictor from Dlib to determine the location ...


Read more ...