Tag: Computer Vision

CamCal #012 Stereo Geometry Code

Highlights: In this post we will finish our mini series on stereo geometry. We will wrap some things up, and go through the code related to this. In the last few posts we talked about stereo geometry. We covered many concepts, from basic stuff, such as essential matrix and epipolar lines to the fundamental matrix. Here, we will present a code that can help us to compute them. Tutorial Overview: Detecting key points (SIFT, SURF,…
Read more

CamCal 010 Essential Matrix Computation – an example

Highlights: In this post we will show some essential matrix computation for the example of parallel cameras. In addition, you will see why it can be useful for. Tutorial Overview: This post covers the following topics: Computation The use of the Essential Matrix 1. Computation In the last post we talked about essential matrix and what it does. Now we are going to show how it is computed. So we have two parallel image planes,…
Read more

CamCal 002 Weak Perspective

Highlights: In this post we will talk about how human vision can be tricked with a Perspective Projection model, and we will present one new model, which is called Weak Perspective. Tutorial Overview: Human vision Weak perspective 1. Human vision Humans are very sensitive to this structure of parallel lines and what they convey to us. Probably most of you have seen this Muller-Lyer illusion. Which one of these lines is longer? And you probably…
Read more

OpenCV #010 Circle Detection Using Hough Transform

Highlights: In this post we will learn about analysing a given image to find circles detected in that image. Tutorial Overview: Intro Detecting Circles with Hough Hough Transform for Circles Code 1. Intro In the previous post, we saw how we can detect and find lines on images using Hough Transform. Now let’s move to something just a little bit more complicated, circles. Let’s start with the equation of a circle: $$ ( x_{i}-a )^{2}+(…
Read more

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