Skip to main content

Overview

The imaging service captures a image frame using gstreamer, does some preprocessing and finds the edges of the track. While we won't go too in-depth here, the preprocessing of the image does roughly the following:

  1. Convert the RGB image to grayscale.

original_image

after_grayscale

  1. Convert the grayscale image to black and white via thresholding. The key parameter here is the threshold value which is fixed.

after_thresholding

Notice how there is clearly a white track, but with some additional artifacts from the floor's reflection. There are many techniques in dealing with such artifacts as well as ways in making the algorithm that follows more robust, however we won't dive into that here.

Then, the algorithm for finding the edges is rather simple. It takes as input the binary image from Step 2 and makes a vertical scan up from the bottom center of the image, returning the y-coordinate of the first black pixel that it finds. If it doesn't find a black pixel after crossing the bottom half of the image, it simply returns the middle of the screen. This is then the place where a horizontal scan is taken with a similar approach to find the left and right edges of the track.

with_points