Tag: c++

OpenCV #009 Line Detection Using Hough Transform

  Highlights: In this post, we will learn how to analyze images and detect basic features: lines! We will describe a well known Hough transform that will help us to do this task. Let’s roll! Tutorial Overview: Line Detection Hough Space Polar Representation for Lines Code for Detecting Lines in Python and C++ 1. Line Detection Human driver on a regular day performs lane detection. This is a crucial task in order to keep the…
Read more

OpenCV #013 Harris Corner Detector – Experiment

Highlights: In this post we will continue working on Harris Corner Detector. In the previous post we presented the basic idea behind this algorithm, and here we will wrap this up and show how this method works in OpenCV. Tutorial Overview: Interpreting the Second Moment Matrix Interpreting the Eigenvalues Harris Corner Response Function Harris Detector Algorithm Code 1. Interpreting the Second Moment Matrix Let’s first consider the case, where the gradient at every point in…
Read more

OpenCV #007 Thresholding

Digital Image Processing using OpenCV (Python & C++) Highlights: In this post we will learn about Thresholding. This method is essential in many computer vision applications. The purpose of this post is to show and benchmark performance of several different approaches, and also to provide you with the necessary knowledge to implement it. Tutorial Overview: Thresholding Simple thresholding Adaptive thresholding Otsu’s Binarization 1. Thresholding In the last post we explained why edges are important for…
Read more

OpenCV #006 Sobel operator and Image gradient

Digital Image Processing using OpenCV (Python & C++) Highlights: In this post, we will learn what Sobel operator and an image gradient are. We will show how to calculate the horizontal and vertical edges as well as edges in general. What is the most important element in the image? Edges! See below. Tutorial Overview: What is the gradient? Finite difference. Discrete gradient. Sobel Operator. 1. What is the Gradient? Let’s talk about differential operators. When…
Read more

005 Averaging and Gaussian Filter

OpenCV #005 Averaging and Gaussian filter

Digital Image Processing using OpenCV (Python & C++) Highlights: In this post, we will learn how to apply and use an Averaging and a Gaussian filter. We will also explain the main differences between these filters and how they affect the output image. What does make a good filter? This is a million dollar question. Tutorial Overview: Averaging filter Gaussian filter 1. Averaging filter What does make a good filter? So, let’s start with a…
Read more