Last time we explored how we can use the rate of change between adjacent pixels to enhance a boundary between two features in an image. Today we are going to take that one step further and isolate edges using the Sobel operators. Hold on tight…
The Sobel Operators
A search for the Sobel operators will quickly turn up these two filters:


I created a rather colorful graphic to demonstrate some of the concepts.




What do you notice? Here’s what I notice:
- All of the non-edges turn black.
- Diagonal edges show up in both filters.
- The first filter misses horizontal edges
- The second filter misses vertical edges.
The union of these two images will give you a more complete view of the edges in the system. If that’s all you wanted to know then you’re done and you can stop here.
I’m curious how they work so I’m going to dig deeper.
Gradient
When you are driving down a mountain you might see a sign (like the one to the right) indicating a steep grade. The grade in the context of a mathematical function is no different. We are trying to find the slope of the function at a given point. This is called the gradient.
Last time we looked at how fast a function was changing by subtracting adjacent intensities. If you think about it, it’s easy to imagine areas with a lot of change having a steep slope, right? So have we already found the gradient? Yes and no. Hold on, this is going to get rough.
Subtracting the adjacent intensities, we determined the slope from one pixel to the next, but we didn’t determine the slope at the pixel. Because we are dealing with discrete values (i.e. there is no ‘in-between’ pixels) the best we can hope for is an approximation of the slope at a pixel. I am hoping that an example will clear this up a bit.
Imagine the sin function represents some hilly terrain you are driving over.

It should be fairly apparent that at the top of the hill our grade is flat (slope = 0). Let’s imagine we have a GPS recording our position every so often so we get an approximation of the terrain.

Using the same technique as the last lesson, let’s try to approximate the slope at the top of the hill. Last time we said the change was f(x+1) – f(x).

Well, that’s not very good. It turns out that if we adjust our formula ever so slightly we get much better results. What if we use the position right before we got to the top of the hill instead of the position at the top?

That is a much better approximation,but what now?
Gradient Edge Detection
Let’s convert our new difference function to our filter representation.
Remember,
- f(x+1) = next position (right after the top)
- f(x) = current position (at the top)
- f(x-1) = previous position (right before the top)
so our gradient function looks like:
-1*f(x-1) + 0* f(x) + 1*f(x+1)
or

Following the same process in the y direction we end up with
-1*f(y-1) + 0* f(y) +1*f(y+1)
or

If we apply these we end up with:



It’s a much weaker signal, but I can still spot the edges.
If these filters make sense to you then you should be able to answer the following questions:
- Why are the horizontal lines still missing in the first image?
- And the vertical lines still missing in the second image?
- Why do the diagonals show up?
Separable Filters
You might be thinking, “um, I guess this is nice, but what does it have to do with the Sobel?” Everything.
We don’t have the tools yet to completely analyze this, but the Sobel operator is a separable filter. This means that it is a combination of two 1D filters. Sobel is a smooth filter multiplied with the gradient filter we just built.
A couple of notes:
- [1,2,1] is a 1D weighted smoothing filter
- This is matrix multiplication. If you need a refresher, check out the Kahn Academy video on the subject. I love that place.

and

Whoa! Mind blown.
Summary
We are starting to add some useful tools to our toolbox, but we are dancing around some really complex concepts. Over the next few lessons we will continue working with a few more simple blur, sharpen, and edge detection routines before we jump head first into frequency analysis.
Download Code
http://cid-88e82fb27d609ced.office.live.com/embedicon.aspx/Blog%20Files/PhoneVision/PhoneVision%2014%20-%20Sobel%20Operator.zip
Up Next: Median Filter
Feel free to leave a comment or follow @azzlsoft on Twitter if you have any questions.