Image Pyramids in OpenCV with Python

In this article, we will learn about image pyramids and how to implement them in Python using OpenCV. What are Image Pyramids? Image pyramids are a commonly used technique in computer vision and image processing that involves creating a multi-scale representation of an image. This representation consists of a series of progressively downsampled images, where

Image Thresholding with OpenCV and Python

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 each pixel intensity in the input image with T. If a pixel in the input image is

Barcode and QR Code Scanner with OpenCV and Python

In this tutorial, we are going to build a simple barcode and QR code scanner using OpenCV and the ZBar library. The ZBar library will be responsible for detecting and localizing the QR codes and barcodes. OpenCV will be used for some preprocessing steps such as loading the image, looping through the detected barcodes, and displaying the

Different star pattern in Python

In this post we will discuss about different basic star pattern in Python. These are very basic and beginners programs, let me know in case you want me create more shapes and patterns. Star pattern 1 Program to implement above star pattern: Star pattern 2 Program to implement above star pattern: Star pattern 3 Program to implement